Searched refs:netconn_type (Results 1 - 10 of 10) sorted by relevance

/barrelfish-master/include/lwip/lwip/
H A Dapi.h64 enum netconn_type { enum
112 enum netconn_type type;
171 netconn *netconn_new_with_proto_and_callback(enum netconn_type t,
175 /** Get the type of a netconn (as enum netconn_type). */
176 #define netconn_type(conn) (conn->type) macro
H A Dapi_msg.h163 struct netconn *netconn_alloc(enum netconn_type t,
/barrelfish-master/include/lwip2/lwip/
H A Dapi.h100 enum netconn_type { enum
207 enum netconn_type type;
292 * @param t @ref netconn_type */
295 struct netconn *netconn_new_with_proto_and_callback(enum netconn_type t, u8_t proto,
298 /** Get the type of a netconn (as enum netconn_type). */
299 #define netconn_type(conn) (conn->type) macro
/barrelfish-master/include/lwip2/lwip/priv/
H A Dapi_msg.h207 struct netconn* netconn_alloc(enum netconn_type t, netconn_callback callback);
/barrelfish-master/lib/lwip2/src/api/
H A Dsockets.c123 (type) : (enum netconn_type)((type) | NETCONN_TYPE_IPV6))
132 #define DOMAIN_TO_NETCONN_TYPE(domain, netconn_type) (netconn_type)
141 #define DOMAIN_TO_NETCONN_TYPE(domain, netconn_type) (netconn_type)
160 if (NETCONNTYPE_GROUP(netconn_type((sock)->conn)) != netconntype) { return ENOPROTOOPT; } }while(0)
492 if (NETCONNTYPE_GROUP(netconn_type(sock->conn)) != NETCONN_TCP) {
622 is_tcp = NETCONNTYPE_GROUP(netconn_type(sock->conn)) == NETCONN_TCP;
728 if (NETCONNTYPE_GROUP(netconn_type(sock->conn)) != NETCONN_TCP) {
779 if (NETCONNTYPE_GROUP(netconn_type(soc
[all...]
H A Dapi_lib.c116 * @param t the type of 'connection' to create (@see enum netconn_type)
123 netconn_new_with_proto_and_callback(enum netconn_type t, u8_t proto, netconn_callback callback)
606 NETCONNTYPE_GROUP(netconn_type(conn)) == NETCONN_TCP, return ERR_ARG;);
H A Dapi_msg.c554 if(NETCONNTYPE_ISIPV6(netconn_type(msg->conn))) {
636 * @param t the type of 'connection' to create (@see enum netconn_type)
642 netconn_alloc(enum netconn_type t, netconn_callback callback)
674 LWIP_ASSERT("netconn_alloc: undefined netconn_type", 0);
1751 LWIP_ASSERT("invalid netconn_type", 0);
/barrelfish-master/lib/lwip/src/api/
H A Dapi_lib.c61 * @param t the type of 'connection' to create (@see enum netconn_type)
67 struct netconn *netconn_new_with_proto_and_callback(enum netconn_type t,
H A Dsockets.c589 if (netconn_type(sock->conn) == NETCONN_TCP) {
606 if (netconn_type(sock->conn) == NETCONN_TCP) {
634 if (netconn_type(sock->conn) == NETCONN_TCP) {
655 if ((netconn_type(sock->conn) == NETCONN_TCP)
H A Dapi_msg.c472 * @param t the type of 'connection' to create (@see enum netconn_type)
478 struct netconn *netconn_alloc(enum netconn_type t, netconn_callback callback)
513 LWIP_ASSERT("netconn_alloc: undefined netconn_type", 0);

Completed in 130 milliseconds