Home
last modified time | relevance | path

Searched refs:chunk_type (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/sys/netinet/
H A Dsctp_input.c676 switch (chk->chunk_type) { in sctp_process_unrecog_chunk()
699 chk->chunk_type, (u_int)chk->chunk_type); in sctp_process_unrecog_chunk()
1103 if (init_cp->ch.chunk_type != SCTP_INITIATION) { in sctp_process_cookie_existing()
1130 if (initack_cp->ch.chunk_type != SCTP_INITIATION_ACK) { in sctp_process_cookie_existing()
1444 if (init_cp->ch.chunk_type != SCTP_INITIATION) { in sctp_process_cookie_new()
1471 if (initack_cp->ch.chunk_type != SCTP_INITIATION_ACK) { in sctp_process_cookie_new()
2374 switch (desc->chunk_type) { in process_chunk_drop()
2823 desc.chunk_type = ch->chunk_type; in sctp_handle_packet_dropped()
2840 if (desc.chunk_type == SCTP_DATA) { in sctp_handle_packet_dropped()
2851 if (desc.chunk_type == SCTP_DATA) { in sctp_handle_packet_dropped()
[all …]
H A Dsctp_constants.h200 #define IS_SCTP_CONTROL(a) ((a)->chunk_type != SCTP_DATA)
201 #define IS_SCTP_DATA(a) ((a)->chunk_type == SCTP_DATA)
H A Dsctp.h56 u_int8_t chunk_type; /* chunk type */ member
H A Dsctp_output.c2638 initm->msg.ch.chunk_type = SCTP_INITIATION; in sctp_send_initiate()
3585 initackm_out->msg.ch.chunk_type = SCTP_INITIATION_ACK; in sctp_send_initiate_ack()
5110 dchkh->ch.chunk_type = SCTP_DATA;
6017 hdr->chunk_type = SCTP_OPERATION_ERROR;
6076 hdr->chunk_type = SCTP_COOKIE_ECHO;
6140 chdr->chunk_type = SCTP_HEARTBEAT_ACK;
6221 hdr->chunk_type = SCTP_COOKIE_ACK;
6267 ack_cp->ch.chunk_type = SCTP_SHUTDOWN_ACK;
6312 shutdown_cp->ch.chunk_type = SCTP_SHUTDOWN;
7609 fwdtsn->ch.chunk_type
[all...]
H A Dsctp_header.h383 u_int8_t chunk_type; member
H A Dsctp_pcb.c1200 if ((ch->chunk_type != SCTP_INITIATION) && in sctp_findassociation_addr()
1201 (ch->chunk_type != SCTP_INITIATION_ACK) && in sctp_findassociation_addr()
1202 (ch->chunk_type != SCTP_COOKIE_ACK) && in sctp_findassociation_addr()
1203 (ch->chunk_type != SCTP_COOKIE_ECHO)) { in sctp_findassociation_addr()
1228 if ((ch->chunk_type == SCTP_INITIATION) || in sctp_findassociation_addr()
1229 (ch->chunk_type == SCTP_INITIATION_ACK)) { in sctp_findassociation_addr()
H A Dsctp_asconf.c647 ack_cp->ch.chunk_type = SCTP_ASCONF_ACK; in sctp_handle_asconf()
2292 acp->ch.chunk_type = SCTP_ASCONF; in sctp_compose_asconf()
H A Dsctputil.c2727 switch (ch->chunk_type) { in sctp_handle_ootb()
2775 if (ch->chunk_type == SCTP_ABORT_ASSOCIATION) { in sctp_is_there_an_abort_here()
2779 if (ch->chunk_type == SCTP_INITIATION) { in sctp_is_there_an_abort_here()
H A Dsctp_indata.c2579 *offset, length, iphlen, (int)ch->ch.chunk_type); in sctp_process_data()
2585 while (ch->ch.chunk_type == SCTP_DATA) { in sctp_process_data()
4311 sack.ch.chunk_type = SCTP_SELECTIVE_ACK; in sctp_update_acked()
/netbsd-src/sys/netinet6/
H A Dsctp6_usrreq.c217 if (ch->chunk_type == SCTP_INITIATION) { in sctp6_input()