Home | History | Annotate | Download | only in qemu

Lines Matching full:port

172             uint16_t   port;
176 uint16_t port;
189 /* initialize a new IPv4 socket address, the IP address and port are
192 void sock_address_init_inet( SockAddress* a, uint32_t ip, uint16_t port );
195 * and the port in host endianess.
198 void sock_address_init_in6 ( SockAddress* a, const uint8_t* ip6[16], uint16_t port );
227 /* return the port number of a given socket address, or -1 if it's a Unix one */
230 /* set the port number of a given socket address, don't do anything for Unix ones */
231 void sock_address_set_port( SockAddress* a, uint16_t port );
253 uint16_t port,
269 /* resolve a host and service/port name into a list of SockAddress objects.
285 const char* port,
371 int socket_loopback_server( int port, SocketType type );
373 /* connect to a port on the host's loopback interface */
374 int socket_loopback_client( int port, SocketType type );
387 int socket_network_client( const char* host, int port, SocketType type );
389 /* create an IPv4 socket and binds it to a given port of the host's interface */
390 int socket_anyaddr_server( int port, SocketType type );