Home | History | Annotate | Download | only in slirp

Lines Matching refs:guest_port

785                 struct in_addr guest_addr, int guest_port)
789 htons(guest_port), 0))
793 htons(guest_port), 0))
800 int guest_port)
803 addr_low_byte, htons(guest_port));
816 static struct socket *slirp_find_ctl_socket(int addr_low_byte, int guest_port)
825 && htons(so->so_fport) == guest_port)
832 size_t slirp_socket_can_recv(int addr_low_byte, int guest_port)
840 so = slirp_find_ctl_socket(addr_low_byte, guest_port);
851 void slirp_socket_recv(int addr_low_byte, int guest_port, const uint8_t *buf,
855 struct socket *so = slirp_find_ctl_socket(addr_low_byte, guest_port);