Uses of Class
EOorg.EOeolang.EOsys.SockaddrIn
-
Packages that use SockaddrIn Package Description EOorg.EOeolang.EOsys.Posix EO runtime, posix.EOorg.EOeolang.EOsys.Win32 EO runtime, windows. -
-
Uses of SockaddrIn in EOorg.EOeolang.EOsys.Posix
Methods in EOorg.EOeolang.EOsys.Posix with parameters of type SockaddrIn Modifier and Type Method Description int
CStdLib. accept(int sockfd, SockaddrIn addr, com.sun.jna.ptr.IntByReference addrlen)
Accept connection on socket.int
CStdLib. bind(int sockfd, SockaddrIn addr, int addrlen)
Assigns the address specified byaddr
to the socket referred to by the file descriptorsockfd
.int
CStdLib. connect(int sockfd, SockaddrIn addr, int addrlen)
Connects to the server at the specified IP address and port. -
Uses of SockaddrIn in EOorg.EOeolang.EOsys.Win32
Methods in EOorg.EOeolang.EOsys.Win32 with parameters of type SockaddrIn Modifier and Type Method Description int
Winsock. accept(int sockfd, SockaddrIn addr, com.sun.jna.ptr.IntByReference addrlen)
Accept connection on socket.int
Winsock. bind(int sockfd, SockaddrIn addr, int addrlen)
Assigns the address specified byaddr
to the socket referred to by the file descriptorsockfd
.int
Winsock. connect(int sockfd, SockaddrIn addr, int addrlen)
Connects to the server at the specified IP address and port.
-