HomeSort by: relevance | last modified time | path
    Searched refs:sctp_paramhdr (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/netinet/
sctp_header.h 47 struct sctp_paramhdr ph; /* type=SCTP_IPV4_PARAM_TYPE, len=8 */
52 struct sctp_paramhdr ph; /* type=SCTP_IPV6_PARAM_TYPE, len=20 */
58 struct sctp_paramhdr ph; /* type=SCTP_COOKIE_PRESERVE, len=8 */
64 struct sctp_paramhdr ph; /* type=SCTP_HOSTNAME_ADDRESS */
70 struct sctp_paramhdr ph; /* type=SCTP_SUPPORTED_ADDRTYPE */
76 struct sctp_paramhdr ph; /* type=SCTP_ECN_CAPABLE */
82 struct sctp_paramhdr ph;
97 struct sctp_paramhdr ph;
103 struct sctp_paramhdr ph; /* a SCTP parameter header */
120 struct sctp_paramhdr ph; /* type = 0x8001 len = 4 *
    [all...]
sctp_indata.c 848 struct sctp_paramhdr *ph;
851 oper->m_len = sizeof(struct sctp_paramhdr) +
853 ph = mtod(oper, struct sctp_paramhdr *);
1077 struct sctp_paramhdr *ph;
1081 sizeof(struct sctp_paramhdr) +
1083 ph = mtod(oper, struct sctp_paramhdr *);
1107 struct sctp_paramhdr *ph;
1111 sizeof(struct sctp_paramhdr) +
1113 ph = mtod(oper, struct sctp_paramhdr *);
1137 struct sctp_paramhdr *ph
    [all...]
sctputil.h 165 struct sctp_paramhdr *sctp_get_next_param(struct mbuf *, int,
166 struct sctp_paramhdr *, int);
sctp_asconf.c 657 p_addr = (struct sctp_ipv6addr_param *)sctp_m_getptr(m, offset, sizeof(struct sctp_paramhdr), (uint8_t *)&aparam_buf);
706 if (param_length <= sizeof(struct sctp_paramhdr)) {
1212 struct sctp_paramhdr *ph;
1217 ph = (struct sctp_paramhdr *)(eh + 1);
1229 if (htons(ph->param_length) + sizeof(struct sctp_paramhdr) >
1413 if (param_length < sizeof(struct sctp_paramhdr)) {
2434 struct sctp_paramhdr tmp_param, *ph;
2451 if ((offset + sizeof(struct sctp_paramhdr)) > length) {
2472 ph = (struct sctp_paramhdr *)sctp_m_getptr(m, offset,
2473 sizeof(struct sctp_paramhdr), (uint8_t *)&tmp_param)
    [all...]
sctp.h 65 struct sctp_paramhdr { struct
sctp_input.c 670 sctp_process_unrecog_chunk(struct sctp_tcb *stcb, struct sctp_paramhdr *phdr,
712 sctp_process_unrecog_param(struct sctp_tcb *stcb, struct sctp_paramhdr *phdr)
714 struct sctp_paramhdr *pbad;
764 struct sctp_paramhdr *phdr;
772 phdr = (struct sctp_paramhdr *)((vaddr_t)ch +
775 while ((size_t)chklen >= sizeof(struct sctp_paramhdr)) {
883 phdr = (struct sctp_paramhdr *)((vaddr_t)phdr + adjust);
1058 struct sctp_paramhdr *ph;
1076 op_err->m_len = op_err->m_pkthdr.len = sizeof(struct sctp_paramhdr);
1077 ph = mtod(op_err, struct sctp_paramhdr *);
    [all...]
sctp_timer.c 194 struct sctp_paramhdr *ph;
197 oper->m_len = sizeof(struct sctp_paramhdr) +
199 ph = mtod(oper, struct sctp_paramhdr *);
917 struct sctp_paramhdr *ph;
920 oper->m_len = sizeof(struct sctp_paramhdr) +
922 ph = mtod(oper, struct sctp_paramhdr *);
sctp_pcb.c 383 struct sctp_paramhdr parm_buf, *phdr;
412 &parm_buf, sizeof(struct sctp_paramhdr));
980 struct sctp_paramhdr *phdr, parm_buf;
1015 (struct sctp_paramhdr *)&ip4_parm, plen);
1033 (struct sctp_paramhdr *)&ip6_parm, plen);
2061 struct sctp_paramhdr *ph;
2063 sizeof(struct sctp_paramhdr);
2065 struct sctp_paramhdr *);
2160 struct sctp_paramhdr *ph;
2161 op_err->m_len = sizeof(struct sctp_paramhdr);
    [all...]
sctp_output.c 168 struct sctp_paramhdr *parmh;
182 parmh = (struct sctp_paramhdr *)(m->m_data + m->m_len);
196 parmh = mtod(mret, struct sctp_paramhdr *);
234 struct sctp_paramhdr *ph;
258 ph = mtod(mret, struct sctp_paramhdr *);
260 sizeof(struct sctp_paramhdr);
262 sizeof(struct sctp_paramhdr));
308 SCTP_SECRET_SIZE, mret, sizeof(struct sctp_paramhdr),
2911 struct sctp_paramhdr *phdr, params;
2932 while ((phdr != NULL) && ((size_t)limit >= sizeof(struct sctp_paramhdr))) {
    [all...]
sctputil.c 1794 struct sctp_paramhdr *
1797 struct sctp_paramhdr *pull,
1801 return ((struct sctp_paramhdr *)sctp_m_getptr(m, offset, pull_limit,
3171 struct sctp_paramhdr *ph;
3172 m->m_len = sizeof(struct sctp_paramhdr);
3173 ph = mtod(m, struct sctp_paramhdr *);
3174 ph->param_length = htons(sizeof(struct sctp_paramhdr));
sctp_usrreq.c 730 struct sctp_paramhdr *ph;
731 ph = mtod(err, struct sctp_paramhdr *);
732 err->m_len = sizeof(struct sctp_paramhdr);

Completed in 26 milliseconds