Searched defs:so_type (Results 1 - 5 of 5) sorted by relevance

/external/qemu/slirp/
H A Dsocket.h40 u_char so_type; /* Type of socket, UDP or TCP */ member in struct:socket
/external/qemu/slirp-android/
H A Dsocket.h41 u_char so_type; /* Type of socket, UDP or TCP */ member in struct:socket
/external/qemu/
H A Dsockets.c1110 int so_type = socket_getoption(fd, SOL_SOCKET, SO_TYPE, -1); local
1111 return socket_type_from_bsd(so_type);
H A Dnet-android.c1868 SocketType so_type = socket_get_type(fd); local
1870 switch(so_type) {
1877 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);
H A Dnet.c1751 int so_type=-1, optlen=sizeof(so_type); local
1753 if(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&so_type,
1758 switch(so_type) {
1765 fprintf(stderr, "qemu: warning: socket type=%d for fd=%d is not SOCK_DGRAM or SOCK_STREAM\n", so_type, fd);

Completed in 159 milliseconds