| 1036 | } |
| 1037 | |
| 1038 | static void |
| 1039 | sctp_process_unrecog_chunk(struct sctp_tcb *stcb, uint8_t chunk_type) |
| 1040 | { |
| 1041 | switch (chunk_type) { |
| 1042 | case SCTP_ASCONF_ACK: |
| 1043 | case SCTP_ASCONF: |
| 1044 | sctp_asconf_cleanup(stcb); |
| 1045 | break; |
| 1046 | case SCTP_IFORWARD_CUM_TSN: |
| 1047 | case SCTP_FORWARD_CUM_TSN: |
| 1048 | stcb->asoc.prsctp_supported = 0; |
| 1049 | break; |
| 1050 | default: |
| 1051 | SCTPDBG(SCTP_DEBUG_INPUT2, |
| 1052 | "Peer does not support chunk type %d (0x%x).\n", |
| 1053 | chunk_type, chunk_type); |
| 1054 | break; |
| 1055 | } |
| 1056 | } |
| 1057 | |
| 1058 | /* |
| 1059 | * Skip past the param header and then we will find the param that caused the |
no test coverage detected