Home
last modified time | relevance | path

Searched refs:so_options (Results 1 – 7 of 7) sorted by relevance

/third_party/lwip/src/include/lwip/
Dip.h83 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)))
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/
Duser_socket.c281 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) {
Duser_socketvar.h130 short so_options; /* from socket call, see socket.h */ member
/third_party/lwip/src/core/
Dtcp.c892 lpcb->so_options = pcb->so_options; in tcp_listen_with_backlog_and_err()
Dtcp_in.c694 npcb->so_options = pcb->so_options & SOF_INHERITED;
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_usrreq.c822 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;
/third_party/lwip/
DCHANGELOG1226 * 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 has
2921 Use this new field to access to common pcb fields (ttl, tos, so_options, etc...).