/external/qemu/slirp/ |
misc.h | 53 u_int16_t fport; member in struct:tos_t 60 u_int16_t fport; member in struct:emu_t
|
misc.c | 634 u_int lport, fport; local 646 if (sscanf(buff1, "%d:%d", &lport, &fport) != 2) { 648 if (sscanf(buff1, "%d", &fport) != 1) { 686 if (emup->lport == lport && emup->fport == fport) { 695 emup->fport = (u_int16_t)fport; 704 (fport && fport == ntohs(so->so_fport))) { 712 lprint("Adding emulation for %s to port %d/%d\r\n", buff1, emup->lport, emup->fport); [all...] |
slirp.c | 739 struct in_addr *faddr, u_int fport), 754 struct in_addr *faddr, u_int fport), 768 int fport = htons(host_port); local 773 if (so->so_fport == fport) {
|
/external/qemu/slirp-android/ |
misc.h | 53 u_int16_t fport; member in struct:tos_t 60 u_int16_t fport; member in struct:emu_t
|
socket.c | 33 uint32_t faddr, u_int fport) 41 so->so_faddr_port == fport) 578 int fport = addr_port; local 580 if (slirp_should_net_forward(faddr, fport, &faddr, &fport)) { 587 faddr, fport, timestamp 591 addr_port = fport;
|
misc.c | 598 u_int lport, fport; local 610 if (sscanf(buff1, "%d:%d", &lport, &fport) != 2) { 612 if (sscanf(buff1, "%d", &fport) != 1) { 650 if (emup->lport == lport && emup->fport == fport) { 659 emup->fport = (u_int16_t)fport; 668 (fport && fport == so->so_faddr_port)) { 676 lprint("Adding emulation for %s to port %d/%d\r\n", buff1, emup->lport, emup->fport); [all...] |
tcp_subr.c | 492 int fport; local 496 /* faddr and fport are modified only on success */ 498 &faddr, &fport)) { 501 sock_port= fport; /* forced dst port */ 717 if ((tcptos[i].fport && so->so_faddr_port == tcptos[i].fport) || 727 if ((emup->fport && (so->so_faddr_port == emup->fport)) ||
|