Home | History | Annotate | Download | only in dropbear

Lines Matching defs:tcpinfo

144 	struct TCPListener tcpinfo;
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;
205 tcpinfo = (struct TCPListener*)m_malloc(sizeof(struct TCPListener));
206 tcpinfo->sendaddr = NULL;
207 tcpinfo->sendport = 0;
208 tcpinfo->listenaddr = bindaddr;
209 tcpinfo->listenport = port;
210 tcpinfo->chantype = &svr_chan_tcpremote;
211 tcpinfo->tcp_type = forwarded;
213 ret = listen_tcpfwd(tcpinfo);
220 m_free(tcpinfo);