Searched defs:lport (Results 1 - 13 of 13) sorted by relevance

/external/iptables/include/linux/netfilter/
H A Dxt_TPROXY.h13 __be16 lport; member in struct:xt_tproxy_target_info
20 __be16 lport; member in struct:xt_tproxy_target_info_v1
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_TPROXY.h13 __be16 lport; member in struct:xt_tproxy_target_info
20 __be16 lport; member in struct:xt_tproxy_target_info_v1
/external/libvncserver/x11vnc/
H A Dinet.c338 int lport = get_local_port(client->sock); local
340 sprintf(msg, "%d, %d\r\n", rport, lport);
453 char *rhost, *rport, *lhost, *lport; local
488 lport = p;
490 if (0) fprintf(stderr, "%d/%d - '%s' '%s'\n", atoi(rport), atoi(lport), rhost, lhost);
495 if (atoi(lport) <= 16 || atoi(lport) > 65535) {
H A Denc.h326 extern void enc_do(char *ciph, char *keyfile, char *lport, char *rhp) { argument
347 extern void enc_do(char *ciph, char *keyfile, char *lport, char *rhp) { argument
500 if (lport != NULL) {
501 listen_port = atoi(lport);
H A Dscreen.c84 void announce(int lport, int ssl, char *iface);
3670 int lport = find_free_port(auto_port, auto_port+200); local
3672 screen->port = lport;
3757 avahi_advertise(vnc_desktop_name, host, lport); \
3761 void announce(int lport, int ssl, char *iface) { argument
3791 if (lport >= 5900) {
3793 host, lport - 5900);
3799 host, lport);
3804 } else if (lport >= 5900) {
3806 host, lport
3825 announce_http(int lport, int ssl, char *iface, char *extra) argument
[all...]
H A Dx11vnc.c859 void ssh_remote_tunnel(char *instr, int lport) { argument
909 sprintf(cmd, "%s -f -p %d -R '%d:localhost:%d' '%s' 'sleep %d'", ssh, sport, rport, lport, s, sleep);
911 sprintf(cmd, "%s -f -R '%d:localhost:%d' '%s' 'sleep %d'", ssh, rport, lport, s, sleep);
952 sprintf(cmd, "env COLUMNS=256 %s | egrep '%s.*-R *%d:localhost:%d.*%s.*sleep *%d' | grep -v grep | awk '{print $2}'", ps, ssh, rport, lport, s, sleep);
/external/kernel-headers/original/uapi/linux/
H A Drds.h123 __be16 lport; member in struct:rds_info_message
/external/openssh/
H A Dmux.c652 u_int lport, cport; local
655 /* XXX - lport/cport check redundant */
658 buffer_get_int_ret(&lport, m) != 0 ||
661 (lport != (u_int)PORT_STREAMLOCAL && lport > 65535) ||
677 fwd.listen_port = lport;
820 u_int lport, cport; local
824 buffer_get_int_ret(&lport, m) != 0 ||
827 (lport != (u_int)PORT_STREAMLOCAL && lport > 6553
[all...]
H A Dservconf.h200 int lport; /* local port */ member in struct:connection_info
H A Dchannels.c3067 channel_cancel_lport_listener_tcpip(const char *lhost, u_short lport, argument
3078 if (c->listening_port != lport)
/external/toybox/toys/pending/
H A Dnetstat.c204 int lport = htons(port); local
205 if (!lport) return xmprintf("%s", "*");
206 struct servent *ser = getservbyport(lport, label);
208 return xmprintf("%u", (unsigned)ntohs(lport));
275 unsigned lport, rport, state, txq, rxq, num, uid; local
279 &num, &laddr.u, &lport, &raddr.u, &rport, &state, &txq, &rxq, &uid, &inode);
281 addr2str(AF_INET, &laddr, lport, lip, label);
302 unsigned lport, rport, state, txq, rxq, num, uid; local
305 &num, &laddr6.u.a, &laddr6.u.b, &laddr6.u.c, &laddr6.u.d, &lport, &raddr6.u.a, &raddr6.u.b,
308 addr2str(AF_INET6, &laddr6, lport, li
[all...]
/external/fio/
H A Dserver.c1634 int lport = 0; local
1661 lport = atoi(host);
1662 if (!lport || lport > 65535) {
1663 log_err("fio: bad server port %u\n", lport);
1667 *port = lport;
1674 if (!lport) {
1679 lport = atoi(portp);
1680 if (!lport || lport > 6553
[all...]
/external/iproute2/misc/
H A Dss.c435 int lport; member in struct:tcpstat
716 return s->lport == 0 && s->local.data == 0;
718 return s->lport < 0;
727 return s->lport >= low && s->lport <= high;
750 if (a->port != -1 && a->port != s->lport)
774 return s->lport >= a->port;
779 return s->lport <= a->port;
1200 sscanf(loc, "%x:%x", s.local.data, (unsigned*)&s.lport);
1209 &s.lport);
[all...]

Completed in 368 milliseconds