1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/net
2023-07-22 19:13:58 +03:00
..
conv net.conv: rename functions to match other langs, making them easier t… (#18937) 2023-07-22 09:11:01 +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: fix semantic inconsistencies of tag retrieving functions (#18558) 2023-06-27 20:10:31 +03:00
http tools: add cmd/tools/show_ancient_deprecations.v, to cleanup ancient functionality, deprecated over an year ago (#18946) 2023-07-22 19:13:58 +03:00
mbedtls net.mbedtls: make compile with -prod 2023-05-18 11:31:53 +02:00
openssl net: fix typos (#18164) 2023-05-12 09:31:27 +03:00
smtp net: fix typos (#18164) 2023-05-12 09:31:27 +03:00
ssl
unix checker: disallow struct int to ptr outside unsafe (#17923) 2023-04-13 07:38:21 +02:00
urllib vweb: add host option to controller (#18303) 2023-05-30 14:22:23 +02:00
websocket orm: improve an fkey error a bit 2023-05-24 18:30:44 +02:00
aasocket.c.v net: fix typos (#18164) 2023-05-12 09:31:27 +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
address.v checker: disallow struct int to ptr outside unsafe (#17923) 2023-04-13 07:38:21 +02:00
afunix.h
common.v checker: disallow struct int to ptr outside unsafe (#17923) 2023-04-13 07:38:21 +02: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
README.md
socket_options.c.v net: fix typos (#18164) 2023-05-12 09:31:27 +03:00
socket.v
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 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 vweb: implement worker pool (#17298) 2023-04-02 01:24:33 +02:00
udp_test.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
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.