1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/net
2023-02-25 19:39:14 +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 tests: extract slow tests (prod, valgrind, inout, repl etc), from vlib/v/tests/ to vlib/v/slow_tests/ (#16892) 2023-01-09 23:47:03 +02:00
websocket ci: make websocket_test.v more robust (wait till the websocket server are open for connections, instead of relying on fixed time.sleep delays, which are not enough on the CI) 2023-02-25 19:39:14 +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 tests: extract slow tests (prod, valgrind, inout, repl etc), from vlib/v/tests/ to vlib/v/slow_tests/ (#16892) 2023-01-09 23:47:03 +02:00
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 tests: extract slow tests (prod, valgrind, inout, repl etc), from vlib/v/tests/ to vlib/v/slow_tests/ (#16892) 2023-01-09 23:47:03 +02:00
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.