From 803b9be8be0827d6f2fde839f6dcd9225a2609be Mon Sep 17 00:00:00 2001 From: rrs Date: Wed, 2 May 2007 12:50:13 +0000 Subject: - Somehow the disable fragment option got lost. We could set/clear it but would not do it. Now we will. - Moved to latest socket api for extended sndrcv info struct. - Moved to support all new levels of fragment interleave (0-2). - Codenomicon security test updates - length checks and such. - Bug in stream reset (2 actually). - setpeerprimary could unlock a null pointer, fixed. - Added a flag in the pcb so netstat can see if we are listening easier. Obtained from: (some of the Listen changes from Weongyo Jeong) --- sys/netinet/sctp.h | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/netinet/sctp.h') diff --git a/sys/netinet/sctp.h b/sys/netinet/sctp.h index e0d7b0b..c89d1c8 100644 --- a/sys/netinet/sctp.h +++ b/sys/netinet/sctp.h @@ -400,6 +400,7 @@ struct sctp_error_unrecognized_chunk { #define SCTP_PCB_FLAGS_BOUNDALL 0x00000004 #define SCTP_PCB_FLAGS_ACCEPTING 0x00000008 #define SCTP_PCB_FLAGS_UNBOUND 0x00000010 +#define SCTP_PCB_FLAGS_LISTENING 0x00000020 #define SCTP_PCB_FLAGS_CLOSE_IP 0x00040000 #define SCTP_PCB_FLAGS_WAS_CONNECTED 0x00080000 #define SCTP_PCB_FLAGS_WAS_ABORTED 0x00100000 -- cgit v1.1