OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tcpinfo
(Results
1 - 7
of
7
) sorted by null
/external/dropbear/
tcp-accept.c
39
struct TCPListener *
tcpinfo
= (struct TCPListener*)(listener->typedata);
local
41
m_free(
tcpinfo
->sendaddr);
42
m_free(
tcpinfo
->listenaddr);
43
m_free(
tcpinfo
);
52
struct TCPListener *
tcpinfo
= (struct TCPListener*)(listener->typedata);
local
67
if (send_msg_channel_open_init(fd,
tcpinfo
->chantype) == DROPBEAR_SUCCESS) {
71
if (
tcpinfo
->tcp_type == direct) {
74
addr =
tcpinfo
->sendaddr;
75
port =
tcpinfo
->sendport;
77
dropbear_assert(
tcpinfo
->tcp_type == forwarded)
[
all
...]
svr-tcpfwd.c
144
struct TCPListener
tcpinfo
;
local
156
tcpinfo
.sendaddr = NULL;
157
tcpinfo
.sendport = 0;
158
tcpinfo
.listenaddr = bindaddr;
159
tcpinfo
.listenport = port;
160
listener = get_listener(CHANNEL_ID_TCPFORWARDED, &
tcpinfo
, matchtcp);
177
struct TCPListener *
tcpinfo
= NULL;
local
205
tcpinfo
= (struct TCPListener*)m_malloc(sizeof(struct TCPListener));
206
tcpinfo
->sendaddr = NULL;
207
tcpinfo
->sendport = 0
[
all
...]
cli-tcpfwd.c
91
struct TCPListener*
tcpinfo
= NULL;
local
97
tcpinfo
= (struct TCPListener*)m_malloc(sizeof(struct TCPListener));
99
tcpinfo
->sendaddr = m_strdup(remoteaddr);
100
tcpinfo
->sendport = remoteport;
103
tcpinfo
->listenaddr = m_strdup("");
105
tcpinfo
->listenaddr = m_strdup("localhost");
107
tcpinfo
->listenport = listenport;
109
tcpinfo
->chantype = &cli_chan_tcplocal;
110
tcpinfo
->tcp_type = direct;
112
ret = listen_tcpfwd(
tcpinfo
);
[
all
...]
tcpfwd.h
66
int listen_tcpfwd(struct TCPListener*
tcpinfo
);
/external/iptables/extensions/
libxt_tcp.c
105
parse_tcp_flags(struct xt_tcp *
tcpinfo
,
110
tcpinfo
->flg_mask = parse_tcp_flag(mask);
111
tcpinfo
->flg_cmp = parse_tcp_flag(cmp);
114
tcpinfo
->invflags |= XT_TCP_INV_FLAGS;
130
struct xt_tcp *
tcpinfo
= (struct xt_tcp *)m->data;
local
132
tcpinfo
->spts[1] =
tcpinfo
->dpts[1] = 0xFFFF;
144
struct xt_tcp *
tcpinfo
= (struct xt_tcp *)(*match)->data;
local
152
parse_tcp_ports(optarg,
tcpinfo
->spts);
154
tcpinfo
->invflags |= XT_TCP_INV_SRCPT
323
const struct xt_tcp *
tcpinfo
= (struct xt_tcp *)match->data;
local
[
all
...]
/external/mdnsresponder/mDNSCore/
uDNS.c
463
if (n->
tcpInfo
.sock) { mDNSPlatformTCPCloseConnection(n->
tcpInfo
.sock); n->
tcpInfo
.sock = mDNSNULL; }
596
mDNSPlatformMemZero(&traversal->
tcpInfo
, sizeof(traversal->
tcpInfo
));
[
all
...]
mDNSEmbeddedAPI.h
[
all
...]
Completed in 119 milliseconds