mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
12 lines
173 B
V
12 lines
173 B
V
module net
|
|
|
|
pub struct Socket {
|
|
pub:
|
|
handle int
|
|
}
|
|
|
|
// address gets the address of a socket
|
|
pub fn (s &Socket) address() !Addr {
|
|
return addr_from_socket_handle(s.handle)
|
|
}
|