1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/net
2023-03-14 08:44:40 +02:00
..
conv
ftp
html net.html: fix panic in html.parse() called with empty string, remove replacement of \n in the original content (#17206) 2023-02-03 00:32:03 +02:00
http checker: check nested struct field with required attr (fix #10913) (#17277) 2023-02-11 11:22:31 +02:00
mbedtls net: allow more fine grained control over socket shutdowns 2023-01-25 12:34:39 +02:00
openssl net.openssl: add manual .str() methods for C.SSL and C.SSL_CTX, fix a bug in the V auto str generation as well. 2023-02-08 13:14:12 +02:00
smtp
ssl
unix net: allow more fine grained control over socket shutdowns 2023-01-25 12:34:39 +02:00
urllib urllib: change Values.get to return an option type (#17636) 2023-03-14 08:44:40 +02:00
websocket net.websocket: fix a typo (allready -> already) (#17512) 2023-03-06 10:05:17 +02:00
aasocket.c.v
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
address.v
afunix.h
common.v net: allow more fine grained control over socket shutdowns 2023-01-25 12:34:39 +02:00
errors.v
ipv6_v6only.h
net_nix.c.v
net_windows.c.v
README.md
socket_options.c.v
socket.v
tcp_read_line.v
tcp_self_dial_from_many_clients_test.v
tcp_simple_client_server_test.v
tcp_test.v
tcp.v net: allow more fine grained control over socket shutdowns 2023-01-25 12:34:39 +02:00
udp_test.v
udp.v net: allow more fine grained control over socket shutdowns 2023-01-25 12:34:39 +02: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.