v/vlib/net
2023-10-19 16:19:37 +03:00
..
conv net.conv: add varinttou64 and u64tovarint functions, for the variable unsigned integer encoding, described in rfc9000 (for QUIC) (#19568) 2023-10-16 14:01:30 +03:00
ftp net.ftp: fix dir() for file names, which contain spaces (fix #18800) (#18804) 2023-07-07 06:50:20 +03:00
html net.html: make public the CloseTagType enum (#19468) 2023-09-29 12:00:41 +03:00
http net, net.http: fix C.FD_ISSET declaration (#19594) 2023-10-19 11:29:13 +03:00
mbedtls net: fix handling of spurious wake-up signals, lost when calling select() in mbedtls and openssl (continue on C.EINTR) (#19600) 2023-10-19 16:19:37 +03:00
openssl net: fix handling of spurious wake-up signals, lost when calling select() in mbedtls and openssl (continue on C.EINTR) (#19600) 2023-10-19 16:19:37 +03:00
smtp fmt: align the custom values of the enum fields (#19331) 2023-09-12 14:44:38 +03:00
ssl
unix net, net.http: fix C.FD_ISSET declaration (#19594) 2023-10-19 11:29:13 +03:00
urllib checker: fix assigning an array slice (fix #19120) (#19137) 2023-08-15 20:37:51 +03:00
websocket fmt: align the custom values of the enum fields (#19331) 2023-09-12 14:44:38 +03:00
aasocket.c.v net, net.http: fix C.FD_ISSET declaration (#19594) 2023-10-19 11:29:13 +03:00
address.v net.ssl: implement SSLConn.peer_addr() (#19333) 2023-09-13 12:16:46 +03:00
address_android.c.v
address_darwin.c.v
address_default.c.v
address_dragonfly.c.v
address_freebsd.c.v
address_linux.c.v
address_netbsd.c.v
address_openbsd.c.v
address_test.v
address_windows.c.v
afunix.h
common.v net, net.http: fix C.FD_ISSET declaration (#19594) 2023-10-19 11:29:13 +03:00
errors.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
ipv6_v6only.h
net_nix.c.v
net_windows.c.v fmt: align the custom values of the enum fields (#19331) 2023-09-12 14:44:38 +03:00
README.md
socket.v
socket_options.c.v fmt: align the custom values of the enum fields (#19331) 2023-09-12 14:44:38 +03:00
tcp.v net, net.http: fix C.FD_ISSET declaration (#19594) 2023-10-19 11:29:13 +03:00
tcp_read_line.v
tcp_self_dial_from_many_clients_test.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
tcp_simple_client_server_test.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
tcp_test.v ci: fix vlib/net/tcp_test.v (change return type of one_shot_echo_server from ? to !) 2023-09-30 19:56:40 +03:00
udp.v net: allow more fine grained control over socket shutdowns 2023-01-25 12:34:39 +02:00
udp_test.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
util.v

Description:

net provides networking functions. It is mostly a wrapper to BSD sockets, so you can listen on a port, connect to remote TCP/UDP services, and communicate with them.