Searched refs:so_options (Results 1 – 7 of 7) sorted by relevance
83 u8_t so_options; \217 #define ip_get_option(pcb, opt) ((pcb)->so_options & (opt))219 #define ip_set_option(pcb, opt) ((pcb)->so_options = (u8_t)((pcb)->so_options | (opt)))221 #define ip_reset_option(pcb, opt) ((pcb)->so_options = (u8_t)((pcb)->so_options & ~(opt)))
281 if (so->so_options & SCTP_SO_ACCEPTCONN) { in sofree()475 so->so_options = head->so_options &~ SCTP_SO_ACCEPTCONN; in sonewconn()1540 so->so_options |= SCTP_SO_ACCEPTCONN; in solisten_proto()1601 if ((head->so_options & SCTP_SO_ACCEPTCONN) == 0) { in user_accept()1874 if (so->so_options & SCTP_SO_ACCEPTCONN) in soconnect()2003 if (so->so_options & SCTP_SO_ACCEPTCONN) {2154 so->so_options |= SCTP_SO_LINGER;2156 so->so_options &= ~SCTP_SO_LINGER;2240 if (so->so_options & SCTP_SO_LINGER) {
130 short so_options; /* from socket call, see socket.h */ member
892 lpcb->so_options = pcb->so_options; in tcp_listen_with_backlog_and_err()
694 npcb->so_options = pcb->so_options & SOF_INHERITED;
822 if (((so->so_options & SCTP_SO_LINGER) && (so->so_linger == 0)) ||825 if (((so->so_options & SO_LINGER) && (so->so_linger == 0)) ||893 if (((so->so_options & SCTP_SO_LINGER) && (so->so_linger == 0)) ||896 if (((so->so_options & SO_LINGER) && (so->so_linger == 0)) ||1099 if (((so->so_options & SCTP_SO_LINGER) &&1103 if (((so->so_options & SO_LINGER) &&6915 so->so_options &= ~SO_ACCEPTCONN;8421 so->so_options &= ~SCTP_SO_ACCEPTCONN;8423 so->so_options &= ~SO_ACCEPTCONN;
1226 * ip.h: implemented API functions to access so_options of IP pcbs (UDP, TCP, RAW)1647 * tcp.c/h: patch #6865 (SO_REUSEADDR for TCP): if pcb.so_options has2921 Use this new field to access to common pcb fields (ttl, tos, so_options, etc...).