2019-06-30 16:11:55 +02:00
|
|
|
module net
|
|
|
|
|
2019-10-10 19:24:36 +02:00
|
|
|
import os
|
|
|
|
|
2019-10-24 18:44:49 +02:00
|
|
|
pub struct Socket {
|
2019-07-01 14:55:45 +02:00
|
|
|
pub:
|
2019-06-30 16:11:55 +02:00
|
|
|
sockfd int
|
2019-07-01 14:55:45 +02:00
|
|
|
family int
|
2019-12-21 23:41:42 +01:00
|
|
|
_type int
|
|
|
|
proto int
|
2019-06-30 16:11:55 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 14:55:45 +02:00
|
|
|
struct C.in_addr {
|
|
|
|
mut:
|
|
|
|
s_addr int
|
2019-06-30 16:11:55 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 14:55:45 +02:00
|
|
|
struct C.sockaddr_in {
|
|
|
|
mut:
|
|
|
|
sin_family int
|
2019-12-21 23:41:42 +01:00
|
|
|
sin_port int
|
|
|
|
sin_addr C.in_addr
|
2019-07-01 14:55:45 +02:00
|
|
|
}
|
2019-06-30 16:11:55 +02:00
|
|
|
|
|
|
|
struct C.addrinfo {
|
2019-07-01 14:55:45 +02:00
|
|
|
mut:
|
2019-12-21 23:41:42 +01:00
|
|
|
ai_family int
|
|
|
|
ai_socktype int
|
|
|
|
ai_flags int
|
|
|
|
ai_protocol int
|
|
|
|
ai_addrlen int
|
|
|
|
ai_addr voidptr
|
2019-09-20 16:04:39 +02:00
|
|
|
ai_canonname voidptr
|
2019-12-21 23:41:42 +01:00
|
|
|
ai_next voidptr
|
|
|
|
}
|
|
|
|
|
|
|
|
struct C.sockaddr_storage {
|
2019-07-01 14:55:45 +02:00
|
|
|
}
|
2019-06-30 16:11:55 +02:00
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.socket() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.setsockopt() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.htonl() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.htons() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.bind() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.listen() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.accept() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.getaddrinfo() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.connect() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.send() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.recv() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.read() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.shutdown() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.close() int
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.ntohs() int
|
2019-06-30 20:57:25 +02:00
|
|
|
|
2019-12-21 23:41:42 +01:00
|
|
|
|
|
|
|
fn C.getsockname() int
|
2019-07-01 14:55:45 +02:00
|
|
|
// create socket
|
2019-11-24 04:27:02 +01:00
|
|
|
pub fn new_socket(family int, _type int, proto int) ?Socket {
|
2019-07-01 14:55:45 +02:00
|
|
|
sockfd := C.socket(family, _type, proto)
|
2019-12-21 23:41:42 +01:00
|
|
|
one := 1
|
2019-08-22 23:00:31 +02:00
|
|
|
// This is needed so that there are no problems with reusing the
|
|
|
|
// same port after the application exits.
|
2019-11-25 04:23:09 +01:00
|
|
|
C.setsockopt(sockfd, C.SOL_SOCKET, C.SO_REUSEADDR, &one, sizeof(int))
|
2020-04-11 19:06:01 +02:00
|
|
|
if sockfd == -1 {
|
2019-11-12 17:23:53 +01:00
|
|
|
return error('net.socket: failed')
|
2019-07-20 05:51:45 +02:00
|
|
|
}
|
2019-12-21 23:41:42 +01:00
|
|
|
s := Socket{
|
2019-07-01 14:55:45 +02:00
|
|
|
sockfd: sockfd
|
|
|
|
family: family
|
|
|
|
_type: _type
|
|
|
|
proto: proto
|
2019-06-30 16:11:55 +02:00
|
|
|
}
|
2019-07-01 14:55:45 +02:00
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2019-08-20 20:52:58 +02:00
|
|
|
pub fn socket_udp() ?Socket {
|
2019-11-24 04:27:02 +01:00
|
|
|
return new_socket(C.AF_INET, C.SOCK_DGRAM, C.IPPROTO_UDP)
|
2019-08-20 20:52:58 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 14:55:45 +02:00
|
|
|
// set socket options
|
2019-09-03 18:10:56 +02:00
|
|
|
pub fn (s Socket) setsockopt(level int, optname int, optvalue &int) ?int {
|
2019-11-25 04:23:09 +01:00
|
|
|
res := C.setsockopt(s.sockfd, level, optname, optvalue, sizeof(&int))
|
2019-07-20 05:51:45 +02:00
|
|
|
if res < 0 {
|
2019-11-12 17:23:53 +01:00
|
|
|
return error('net.setsocketopt: failed with $res')
|
2019-07-20 05:51:45 +02:00
|
|
|
}
|
2019-11-24 04:27:02 +01:00
|
|
|
return res
|
2019-07-01 14:55:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// bind socket to port
|
2019-07-20 05:51:45 +02:00
|
|
|
pub fn (s Socket) bind(port int) ?int {
|
2019-12-21 23:41:42 +01:00
|
|
|
mut addr := C.sockaddr_in{
|
|
|
|
}
|
2019-07-01 14:55:45 +02:00
|
|
|
addr.sin_family = s.family
|
|
|
|
addr.sin_port = C.htons(port)
|
2019-08-22 23:00:31 +02:00
|
|
|
addr.sin_addr.s_addr = C.htonl(C.INADDR_ANY)
|
2019-07-01 14:55:45 +02:00
|
|
|
size := 16 // sizeof(C.sockaddr_in)
|
2019-11-24 04:27:02 +01:00
|
|
|
res := C.bind(s.sockfd, &addr, size)
|
2019-07-20 05:51:45 +02:00
|
|
|
if res < 0 {
|
2019-11-12 17:23:53 +01:00
|
|
|
return error('net.bind: failed with $res')
|
2019-07-20 05:51:45 +02:00
|
|
|
}
|
2019-08-20 20:52:58 +02:00
|
|
|
return res
|
2019-07-01 14:55:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// put socket into passive mode and wait to receive
|
2019-07-20 05:51:45 +02:00
|
|
|
pub fn (s Socket) listen() ?int {
|
2019-07-01 14:55:45 +02:00
|
|
|
backlog := 128
|
2019-11-24 04:27:02 +01:00
|
|
|
res := C.listen(s.sockfd, backlog)
|
2019-07-20 05:51:45 +02:00
|
|
|
if res < 0 {
|
2019-11-12 17:23:53 +01:00
|
|
|
return error('net.listen: failed with $res')
|
2019-07-20 05:51:45 +02:00
|
|
|
}
|
2019-08-20 10:18:12 +02:00
|
|
|
$if debug {
|
|
|
|
println('listen res = $res')
|
|
|
|
}
|
2019-08-22 23:00:31 +02:00
|
|
|
return res
|
2019-07-01 14:55:45 +02:00
|
|
|
}
|
|
|
|
|
2019-07-03 10:25:31 +02:00
|
|
|
// put socket into passive mode with user specified backlog and wait to receive
|
2019-07-20 05:51:45 +02:00
|
|
|
pub fn (s Socket) listen_backlog(backlog int) ?int {
|
2019-07-03 10:25:31 +02:00
|
|
|
mut n := 0
|
|
|
|
if backlog > 0 {
|
|
|
|
n = backlog
|
|
|
|
}
|
|
|
|
res := C.listen(s.sockfd, n)
|
2019-07-20 05:51:45 +02:00
|
|
|
if res < 0 {
|
2019-11-12 17:23:53 +01:00
|
|
|
return error('net.listen_backlog: failed with $res')
|
2019-07-20 05:51:45 +02:00
|
|
|
}
|
2019-11-24 04:27:02 +01:00
|
|
|
return res
|
2019-07-03 10:25:31 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 14:55:45 +02:00
|
|
|
// helper method to create, bind, and listen given port number
|
2019-07-20 05:51:45 +02:00
|
|
|
pub fn listen(port int) ?Socket {
|
2019-08-20 10:18:12 +02:00
|
|
|
$if debug {
|
|
|
|
println('net.listen($port)')
|
|
|
|
}
|
2019-11-24 04:27:02 +01:00
|
|
|
s := new_socket(C.AF_INET, C.SOCK_STREAM, 0) or {
|
2019-07-20 05:51:45 +02:00
|
|
|
return error(err)
|
|
|
|
}
|
2019-12-06 13:24:53 +01:00
|
|
|
_ = s.bind(port) or {
|
2019-07-20 05:51:45 +02:00
|
|
|
return error(err)
|
|
|
|
}
|
2019-12-06 13:24:53 +01:00
|
|
|
_ = s.listen() or {
|
2019-07-20 05:51:45 +02:00
|
|
|
return error(err)
|
2019-06-30 16:11:55 +02:00
|
|
|
}
|
2019-07-01 14:55:45 +02:00
|
|
|
return s
|
2019-06-30 16:11:55 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 14:55:45 +02:00
|
|
|
// accept first connection request from socket queue
|
2019-07-20 05:51:45 +02:00
|
|
|
pub fn (s Socket) accept() ?Socket {
|
2019-08-20 10:18:12 +02:00
|
|
|
$if debug {
|
|
|
|
println('accept()')
|
|
|
|
}
|
2019-12-21 23:41:42 +01:00
|
|
|
addr := C.sockaddr_storage{
|
|
|
|
}
|
2019-07-01 14:55:45 +02:00
|
|
|
size := 128 // sizeof(sockaddr_storage)
|
|
|
|
sockfd := C.accept(s.sockfd, &addr, &size)
|
|
|
|
if sockfd < 0 {
|
2019-11-12 17:23:53 +01:00
|
|
|
return error('net.accept: failed with $sockfd')
|
2019-06-30 21:00:22 +02:00
|
|
|
}
|
2019-12-21 23:41:42 +01:00
|
|
|
c := Socket{
|
2019-07-01 14:55:45 +02:00
|
|
|
sockfd: sockfd
|
|
|
|
family: s.family
|
|
|
|
_type: s._type
|
|
|
|
proto: s.proto
|
2019-06-30 21:00:22 +02:00
|
|
|
}
|
2019-07-01 14:55:45 +02:00
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
// connect to given addrress and port
|
2019-07-20 05:51:45 +02:00
|
|
|
pub fn (s Socket) connect(address string, port int) ?int {
|
2019-12-21 23:41:42 +01:00
|
|
|
mut hints := C.addrinfo{
|
|
|
|
}
|
2019-10-10 19:09:43 +02:00
|
|
|
hints.ai_family = s.family
|
|
|
|
hints.ai_socktype = s._type
|
2019-08-22 23:00:31 +02:00
|
|
|
hints.ai_flags = C.AI_PASSIVE
|
2019-10-10 19:09:43 +02:00
|
|
|
hints.ai_protocol = s.proto
|
2019-09-20 16:04:39 +02:00
|
|
|
hints.ai_addrlen = 0
|
|
|
|
hints.ai_canonname = C.NULL
|
|
|
|
hints.ai_addr = C.NULL
|
2019-09-26 21:54:15 +02:00
|
|
|
hints.ai_next = C.NULL
|
2019-12-04 11:08:28 +01:00
|
|
|
info := &C.addrinfo(0)
|
2019-07-01 14:55:45 +02:00
|
|
|
sport := '$port'
|
2019-07-22 16:51:33 +02:00
|
|
|
info_res := C.getaddrinfo(address.str, sport.str, &hints, &info)
|
2019-07-01 14:55:45 +02:00
|
|
|
if info_res != 0 {
|
2019-10-10 19:24:36 +02:00
|
|
|
error_message := os.get_error_msg(net.error_code())
|
2019-11-12 17:23:53 +01:00
|
|
|
return error('net.connect: getaddrinfo failed "$error_message"')
|
2019-06-30 21:00:22 +02:00
|
|
|
}
|
2019-11-24 04:27:02 +01:00
|
|
|
res := C.connect(s.sockfd, info.ai_addr, info.ai_addrlen)
|
2019-07-20 05:51:45 +02:00
|
|
|
if res < 0 {
|
2019-10-10 19:24:36 +02:00
|
|
|
error_message := os.get_error_msg(net.error_code())
|
2019-11-12 17:23:53 +01:00
|
|
|
return error('net.connect: connect failed "$error_message"')
|
2019-07-20 05:51:45 +02:00
|
|
|
}
|
2019-11-24 04:27:02 +01:00
|
|
|
return res
|
2019-06-30 20:57:25 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 14:55:45 +02:00
|
|
|
// helper method to create socket and connect
|
2019-07-20 05:51:45 +02:00
|
|
|
pub fn dial(address string, port int) ?Socket {
|
2019-11-24 04:27:02 +01:00
|
|
|
s := new_socket(C.AF_INET, C.SOCK_STREAM, 0) or {
|
2019-07-20 05:51:45 +02:00
|
|
|
return error(err)
|
|
|
|
}
|
2019-12-06 13:24:53 +01:00
|
|
|
_ = s.connect(address, port) or {
|
2019-07-20 05:51:45 +02:00
|
|
|
return error(err)
|
2019-07-01 14:55:45 +02:00
|
|
|
}
|
|
|
|
return s
|
2019-06-30 20:57:25 +02:00
|
|
|
}
|
|
|
|
|
2019-12-11 15:32:54 +01:00
|
|
|
// send data to socket (when you have a memory buffer)
|
2019-09-23 22:17:06 +02:00
|
|
|
pub fn (s Socket) send(buf byteptr, len int) ?int {
|
2019-12-11 15:32:54 +01:00
|
|
|
mut dptr := buf
|
|
|
|
mut dlen := len
|
|
|
|
for {
|
|
|
|
sbytes := C.send(s.sockfd, dptr, dlen, MSG_NOSIGNAL)
|
2019-12-21 23:41:42 +01:00
|
|
|
if sbytes < 0 {
|
|
|
|
return error('net.send: failed with $sbytes')
|
|
|
|
}
|
2019-12-11 15:32:54 +01:00
|
|
|
dlen -= sbytes
|
2019-12-21 23:41:42 +01:00
|
|
|
if dlen <= 0 {
|
|
|
|
break
|
|
|
|
}
|
2019-12-11 15:32:54 +01:00
|
|
|
dptr += sbytes
|
2019-09-23 18:48:18 +02:00
|
|
|
}
|
2019-12-11 15:32:54 +01:00
|
|
|
return len
|
|
|
|
}
|
|
|
|
|
|
|
|
// send string data to socket (when you have a v string)
|
|
|
|
pub fn (s Socket) send_string(sdata string) ?int {
|
2019-12-21 23:41:42 +01:00
|
|
|
return s.send(sdata.str, sdata.len)
|
2019-07-02 17:25:21 +02:00
|
|
|
}
|
|
|
|
|
2020-02-12 14:52:39 +01:00
|
|
|
// receive string data from socket. NB: you are responsible for freeing the returned byteptr
|
2019-12-21 23:41:42 +01:00
|
|
|
pub fn (s Socket) recv(bufsize int) (byteptr,int) {
|
2020-02-12 14:52:39 +01:00
|
|
|
mut buf := byteptr(0)
|
|
|
|
unsafe { buf = malloc(bufsize) }
|
2019-11-24 04:27:02 +01:00
|
|
|
res := C.recv(s.sockfd, buf, bufsize, 0)
|
2019-12-21 23:41:42 +01:00
|
|
|
return buf,res
|
2019-07-02 17:25:21 +02:00
|
|
|
}
|
|
|
|
|
2019-08-21 19:04:06 +02:00
|
|
|
// TODO: remove cread/2 and crecv/2 when the Go net interface is done
|
2019-12-21 23:41:42 +01:00
|
|
|
pub fn (s Socket) cread(buffer byteptr, buffersize int) int {
|
2019-11-24 04:27:02 +01:00
|
|
|
return C.read(s.sockfd, buffer, buffersize)
|
2019-08-21 19:04:06 +02:00
|
|
|
}
|
2019-12-21 23:41:42 +01:00
|
|
|
|
2019-08-20 20:52:58 +02:00
|
|
|
// Receive a message from the socket, and place it in a preallocated buffer buf,
|
|
|
|
// with maximum message size bufsize. Returns the length of the received message.
|
2019-12-21 23:41:42 +01:00
|
|
|
pub fn (s Socket) crecv(buffer byteptr, buffersize int) int {
|
2019-11-24 04:27:02 +01:00
|
|
|
return C.recv(s.sockfd, buffer, buffersize, 0)
|
2019-08-21 19:04:06 +02:00
|
|
|
}
|
|
|
|
|
2019-07-01 14:55:45 +02:00
|
|
|
// shutdown and close socket
|
2019-07-20 05:51:45 +02:00
|
|
|
pub fn (s Socket) close() ?int {
|
|
|
|
mut shutdown_res := 0
|
2019-07-13 23:29:00 +02:00
|
|
|
$if windows {
|
2019-08-22 23:00:31 +02:00
|
|
|
shutdown_res = C.shutdown(s.sockfd, C.SD_BOTH)
|
2019-12-21 23:41:42 +01:00
|
|
|
} $else {
|
2019-08-22 23:00:31 +02:00
|
|
|
shutdown_res = C.shutdown(s.sockfd, C.SHUT_RDWR)
|
2019-07-13 23:29:00 +02:00
|
|
|
}
|
2019-07-20 05:51:45 +02:00
|
|
|
// TODO: should shutdown throw an error? close will
|
|
|
|
// continue even if shutdown failed
|
2019-12-21 23:41:42 +01:00
|
|
|
// if shutdown_res < 0 {
|
|
|
|
// return error('net.close: shutdown failed with $shutdown_res')
|
|
|
|
// }
|
2019-07-20 05:51:45 +02:00
|
|
|
mut res := 0
|
2019-07-13 23:29:00 +02:00
|
|
|
$if windows {
|
2019-07-20 05:51:45 +02:00
|
|
|
res = C.closesocket(s.sockfd)
|
2019-12-21 23:41:42 +01:00
|
|
|
} $else {
|
2019-07-20 05:51:45 +02:00
|
|
|
res = C.close(s.sockfd)
|
|
|
|
}
|
|
|
|
if res < 0 {
|
2019-11-12 17:23:53 +01:00
|
|
|
return error('net.close: failed with $res')
|
2019-07-13 23:29:00 +02:00
|
|
|
}
|
2019-07-01 14:55:45 +02:00
|
|
|
return 0
|
|
|
|
}
|
2019-07-29 18:21:36 +02:00
|
|
|
|
2019-11-18 22:13:14 +01:00
|
|
|
pub const (
|
|
|
|
CRLF = '\r\n'
|
|
|
|
MAX_READ = 400
|
|
|
|
MSG_PEEK = 0x02
|
2019-08-22 23:00:31 +02:00
|
|
|
)
|
2019-11-18 22:13:14 +01:00
|
|
|
// write - write a string with CRLF after it over the socket s
|
|
|
|
pub fn (s Socket) write(str string) ?int {
|
|
|
|
line := '$str$CRLF'
|
2019-11-24 04:27:02 +01:00
|
|
|
res := C.send(s.sockfd, line.str, line.len, MSG_NOSIGNAL)
|
2019-12-21 23:41:42 +01:00
|
|
|
if res < 0 {
|
|
|
|
return error('net.write: failed with $res')
|
|
|
|
}
|
2019-11-18 22:13:14 +01:00
|
|
|
return res
|
2019-07-29 18:21:36 +02:00
|
|
|
}
|
2019-08-22 23:00:31 +02:00
|
|
|
|
2019-11-18 22:13:14 +01:00
|
|
|
// read_line - retrieves a line from the socket s (i.e. a string ended with \n)
|
2019-07-29 18:21:36 +02:00
|
|
|
pub fn (s Socket) read_line() string {
|
2019-11-18 22:13:14 +01:00
|
|
|
mut buf := [MAX_READ]byte // where C.recv will store the network data
|
|
|
|
mut res := '' // The final result, including the ending \n.
|
|
|
|
for {
|
|
|
|
mut line := '' // The current line. Can be a partial without \n in it.
|
2019-12-21 23:41:42 +01:00
|
|
|
n := C.recv(s.sockfd, buf, MAX_READ - 1, MSG_PEEK)
|
|
|
|
if n == -1 {
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
return res
|
|
|
|
}
|
2019-11-18 22:13:14 +01:00
|
|
|
buf[n] = `\0`
|
|
|
|
mut eol_idx := -1
|
2020-02-24 17:55:16 +01:00
|
|
|
for i in 0..n {
|
2019-11-18 22:13:14 +01:00
|
|
|
if int(buf[i]) == `\n` {
|
|
|
|
eol_idx = i
|
|
|
|
// Ensure that tos_clone(buf) later,
|
|
|
|
// will return *only* the first line (including \n),
|
|
|
|
// and ignore the rest
|
2019-12-21 23:41:42 +01:00
|
|
|
buf[i + 1] = `\0`
|
2019-11-18 22:13:14 +01:00
|
|
|
break
|
2019-08-20 10:18:12 +02:00
|
|
|
}
|
2019-11-18 22:13:14 +01:00
|
|
|
}
|
|
|
|
line = tos_clone(buf)
|
|
|
|
if eol_idx > 0 {
|
|
|
|
// At this point, we are sure that recv returned valid data,
|
|
|
|
// that contains *at least* one line.
|
|
|
|
// Ensure that the block till the first \n (including it)
|
|
|
|
// is removed from the socket's receive queue, so that it does
|
|
|
|
// not get read again.
|
2019-12-21 23:41:42 +01:00
|
|
|
C.recv(s.sockfd, buf, eol_idx + 1, 0)
|
2019-11-18 22:13:14 +01:00
|
|
|
res += line
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// recv returned a buffer without \n in it .
|
|
|
|
C.recv(s.sockfd, buf, n, 0)
|
|
|
|
res += line
|
|
|
|
res += CRLF
|
|
|
|
break
|
|
|
|
}
|
|
|
|
return res
|
2019-07-29 18:21:36 +02:00
|
|
|
}
|
|
|
|
|
2019-12-06 22:44:22 +01:00
|
|
|
// TODO
|
|
|
|
pub fn (s Socket) read_all() string {
|
|
|
|
mut buf := [MAX_READ]byte // where C.recv will store the network data
|
|
|
|
mut res := '' // The final result, including the ending \n.
|
|
|
|
for {
|
2019-12-21 23:41:42 +01:00
|
|
|
n := C.recv(s.sockfd, buf, MAX_READ - 1, 0)
|
|
|
|
if n == -1 {
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
return res
|
|
|
|
}
|
2019-12-06 22:44:22 +01:00
|
|
|
res += tos_clone(buf)
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
2019-09-20 16:04:39 +02:00
|
|
|
pub fn (s Socket) get_port() int {
|
2019-12-21 23:41:42 +01:00
|
|
|
mut addr := C.sockaddr_in{
|
|
|
|
}
|
2019-09-20 16:04:39 +02:00
|
|
|
size := 16 // sizeof(sockaddr_in)
|
2019-11-24 04:27:02 +01:00
|
|
|
C.getsockname(s.sockfd, &addr, &size)
|
|
|
|
return C.ntohs(addr.sin_port)
|
2019-09-20 16:04:39 +02:00
|
|
|
}
|