Symbol: sctp_error_cause
sys/netinet/libalias/alias_sctp.c
933
int sctp_size = sizeof(struct sctphdr) + sizeof(struct sctp_chunkhdr) + sizeof(struct sctp_error_cause);
sys/netinet/libalias/alias_sctp.c
941
ip_size = ip_size - sizeof(struct sctp_error_cause);
sys/netinet/libalias/alias_sctp.c
942
sctp_size = sctp_size - sizeof(struct sctp_error_cause);
sys/netinet/libalias/alias_sctp.c
948
struct sctp_error_cause* error_cause = (struct sctp_error_cause *) ((char *) chunk_hdr + sizeof(*chunk_hdr));
sys/netinet/libalias/alias_sctp.c
969
error_cause->length = htons(sizeof(struct sctp_error_cause));
sys/netinet/libalias/alias_sctp.c
970
chunk_hdr->chunk_length = htons(sizeof(*chunk_hdr) + sizeof(struct sctp_error_cause));
sys/netinet/sctp.h
398
struct sctp_error_cause cause; /* code=SCTP_CAUSE_INVALID_STREAM */
sys/netinet/sctp.h
404
struct sctp_error_cause cause; /* code=SCTP_CAUSE_MISSING_PARAM */
sys/netinet/sctp.h
410
struct sctp_error_cause cause; /* code=SCTP_CAUSE_STALE_COOKIE */
sys/netinet/sctp.h
415
struct sctp_error_cause cause; /* code=SCTP_CAUSE_OUT_OF_RESOURCES */
sys/netinet/sctp.h
419
struct sctp_error_cause cause; /* code=SCTP_CAUSE_UNRESOLVABLE_ADDR */
sys/netinet/sctp.h
423
struct sctp_error_cause cause; /* code=SCTP_CAUSE_UNRECOG_CHUNK */
sys/netinet/sctp.h
428
struct sctp_error_cause cause; /* code=SCTP_CAUSE_NO_USER_DATA */
sys/netinet/sctp.h
433
struct sctp_error_cause cause; /* code=SCTP_CAUSE_UNSUPPORTED_HMACID */
sys/netinet/sctp_asconf.c
103
struct sctp_error_cause *error;
sys/netinet/sctp_asconf.c
111
cause_length = sizeof(struct sctp_error_cause) + tlv_length;
sys/netinet/sctp_asconf.c
134
error = (struct sctp_error_cause *)(aph + 1);
sys/netinet/sctp_asconf.c
1563
struct sctp_error_cause *eh;
sys/netinet/sctp_asconf.c
1568
eh = (struct sctp_error_cause *)(aph + 1);
sys/netinet/sctp_asconf.c
1571
if (htons(eh->length) + sizeof(struct sctp_error_cause) >
sys/netinet/sctp_input.c
1063
struct sctp_error_cause *cause;
sys/netinet/sctp_input.c
1070
cause = (struct sctp_error_cause *)((caddr_t)ch +
sys/netinet/sctp_input.c
1082
while (remaining_length >= sizeof(struct sctp_error_cause)) {
sys/netinet/sctp_input.c
1192
if (cause_length >= sizeof(struct sctp_error_cause) + sizeof(struct sctp_paramhdr)) {
sys/netinet/sctp_input.c
1237
cause = (struct sctp_error_cause *)((caddr_t)cause + adjust);
sys/netinet/sctp_input.c
759
if (len >= sizeof(struct sctp_chunkhdr) + sizeof(struct sctp_error_cause)) {
sys/netinet/sctp_input.c
764
struct sctp_error_cause *cause;
sys/netinet/sctp_input.c
766
cause = (struct sctp_error_cause *)(abort + 1);