OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:netconn_type
(Results
1 - 5
of
5
) sorted by null
/external/syslinux/core/lwip/src/include/lwip/
api.h
83
enum
netconn_type
{
enum
136
enum
netconn_type
type;
210
netconn *netconn_new_with_proto_and_callback(enum
netconn_type
t, u8_t proto,
213
/** Get the type of a netconn (as enum
netconn_type
). */
214
#define
netconn_type
(conn) (conn->type)
macro
api_msg.h
165
struct netconn* netconn_alloc(enum
netconn_type
t, netconn_callback callback);
/external/syslinux/core/lwip/src/api/
sockets.c
454
is_tcp =
netconn_type
(sock->conn) == NETCONN_TCP;
591
if (
netconn_type
(sock->conn) == NETCONN_TCP) {
621
if (
netconn_type
(sock->conn) == NETCONN_TCP) {
644
if (
netconn_type
(sock->conn) == NETCONN_TCP) {
663
if (
netconn_type
(sock->conn) == NETCONN_TCP) {
688
if (
netconn_type
(sock->conn) == NETCONN_TCP) {
708
if ((
netconn_type
(sock->conn) == NETCONN_TCP) && (buflen - copylen > 0)) {
716
if (
netconn_type
(sock->conn) == NETCONN_TCP) {
[
all
...]
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)
437
netconn_type
(conn) == NETCONN_TCP, return ERR_ARG;);
api_msg.c
557
* @param t the type of 'connection' to create (@see enum
netconn_type
)
564
netconn_alloc(enum
netconn_type
t, netconn_callback callback)
599
LWIP_ASSERT("netconn_alloc: undefined
netconn_type
", 0);
[
all
...]
Completed in 2284 milliseconds