HomeSort by relevance Sort by last modified time
    Searched defs:tcpinfo (Results 1 - 5 of 5) sorted by null

  /external/dropbear/
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...]
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...]
  /external/iptables/extensions/
libip6t_tcp.c 109 parse_tcp_flags(struct ip6t_tcp *tcpinfo,
114 tcpinfo->flg_mask = parse_tcp_flag(mask);
115 tcpinfo->flg_cmp = parse_tcp_flag(cmp);
118 tcpinfo->invflags |= IP6T_TCP_INV_FLAGS;
136 struct ip6t_tcp *tcpinfo = (struct ip6t_tcp *)m->data; local
138 tcpinfo->spts[1] = tcpinfo->dpts[1] = 0xFFFF;
154 struct ip6t_tcp *tcpinfo = (struct ip6t_tcp *)(*match)->data; local
162 parse_tcp_ports(argv[optind-1], tcpinfo->spts);
164 tcpinfo->invflags |= IP6T_TCP_INV_SRCPT
346 const struct ip6t_tcp *tcpinfo = (struct ip6t_tcp *)match->data; local
    [all...]
libipt_tcp.c 110 parse_tcp_flags(struct ipt_tcp *tcpinfo,
115 tcpinfo->flg_mask = parse_tcp_flag(mask);
116 tcpinfo->flg_cmp = parse_tcp_flag(cmp);
119 tcpinfo->invflags |= IPT_TCP_INV_FLAGS;
137 struct ipt_tcp *tcpinfo = (struct ipt_tcp *)m->data; local
139 tcpinfo->spts[1] = tcpinfo->dpts[1] = 0xFFFF;
155 struct ipt_tcp *tcpinfo = (struct ipt_tcp *)(*match)->data; local
163 parse_tcp_ports(argv[optind-1], tcpinfo->spts);
165 tcpinfo->invflags |= IPT_TCP_INV_SRCPT
347 const struct ipt_tcp *tcpinfo = (struct ipt_tcp *)match->data; local
    [all...]

Completed in 55 milliseconds