Searched refs:netconn_type (Results 1 - 11 of 11) sorted by relevance
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | api.h | 50 enum netconn_type { enum 82 enum netconn_type type; 123 struct netconn * netconn_new (enum netconn_type type); 125 netconn *netconn_new_with_callback(enum netconn_type t, 128 netconn *netconn_new_with_proto_and_callback(enum netconn_type t, u16_t proto, 131 enum netconn_type netconn_type (struct netconn *conn);
|
H A D | api_msg.h | 68 enum netconn_type conntype;
|
/vbox/src/VBox/Devices/Network/lwip-new/src/api/ |
H A D | sockets.c | 101 (type) : (enum netconn_type)((type) | NETCONN_TYPE_IPV6)) 110 #define DOMAIN_TO_NETCONN_TYPE(domain, netconn_type) (netconn_type) 410 if (NETCONNTYPE_GROUP(netconn_type(sock->conn)) != NETCONN_TCP) { 531 is_tcp = NETCONNTYPE_GROUP(netconn_type(sock->conn)) == NETCONN_TCP; 618 if (NETCONNTYPE_GROUP(netconn_type(sock->conn)) != NETCONN_TCP) { 671 if (NETCONNTYPE_GROUP(netconn_type(sock->conn)) == NETCONN_TCP) { 701 if (NETCONNTYPE_GROUP(netconn_type(sock->conn)) == NETCONN_TCP) { 724 if (NETCONNTYPE_GROUP(netconn_type(sock->conn)) == NETCONN_TCP) { 748 if (NETCONNTYPE_GROUP(netconn_type(soc [all...] |
H A D | api_lib.c | 61 * @param t the type of 'connection' to create (@see enum netconn_type) 68 netconn_new_with_proto_and_callback(enum netconn_type t, u8_t proto, netconn_callback callback) 452 NETCONNTYPE_GROUP(netconn_type(conn)) == NETCONN_TCP, return ERR_ARG;);
|
H A D | api_msg.c | 570 * @param t the type of 'connection' to create (@see enum netconn_type) 577 netconn_alloc(enum netconn_type t, netconn_callback callback) 609 LWIP_ASSERT("netconn_alloc: undefined netconn_type", 0); 1462 LWIP_ASSERT("invalid netconn_type", 0);
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | api.h | 98 enum netconn_type { enum 163 enum netconn_type type; 242 netconn *netconn_new_with_proto_and_callback(enum netconn_type t, u8_t proto, 245 /** Get the type of a netconn (as enum netconn_type). */ 246 #define netconn_type(conn) (conn->type) macro
|
H A D | api_msg.h | 168 struct netconn* netconn_alloc(enum netconn_type t, netconn_callback callback);
|
/vbox/src/VBox/Devices/Network/lwip/src/api/ |
H A D | api_lib.c | 197 netconn *netconn_new_with_proto_and_callback(enum netconn_type t, u16_t proto, 250 netconn *netconn_new(enum netconn_type t) 256 netconn *netconn_new_with_callback(enum netconn_type t, 318 enum netconn_type 319 netconn_type(struct netconn *conn) function
|
H A D | sockets.c | 443 if (netconn_type(sock->conn) == NETCONN_TCP && buflen - copylen > 0) { 484 switch (netconn_type(sock->conn)) {
|
/vbox/src/VBox/Devices/Network/lwip/vbox/include/ |
H A D | lwipopts.h | 175 #define netconn_type lwip_netconn_type macro
|
/vbox/src/VBox/Devices/Network/lwip-new/vbox/include/ |
H A D | lwip-namespace.h | 74 #define netconn_type lwip_netconn_type
|
Completed in 67 milliseconds