v/vlib/net
2023-12-16 08:06:30 +02:00
..
conv all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
ftp all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
html net.html: fix doc comments for html.parse functions (#20109) 2023-12-07 18:22:15 +02:00
http os, net.http.file: add a folder listing to the http static file server, started by file.serve/1 (#20192) 2023-12-16 08:06:30 +02:00
mbedtls all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
openssl net.openssl: correctly assign nil to reference values after the recent notice about it (#19981) 2023-11-24 09:38:05 +02:00
smtp all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
socks net.http: add socks5|http(s) proxy support [Linux] (#19676) 2023-11-09 23:56:16 +02:00
ssl all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
unix all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
urllib builtin: deprecate string.last_index/1 for string.index_last/1, and string.last_index_u8/1 for string.index_u8_last/1 (#20095) 2023-12-05 13:56:59 +02:00
websocket net.websocket: fix the notice messages about the initialization of references outside unsafe mode (#20038) 2023-11-30 15:30:35 +02:00
aasocket.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
address.c.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
address_android.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
address_darwin.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
address_default.c.v checker: improve pub struct check (fix #14446) (#14777) 2022-06-19 17:42:22 +03:00
address_dragonfly.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
address_freebsd.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
address_linux.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
address_netbsd.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
address_openbsd.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
address_test.c.v flag,json,net: handle C calls in .v files (part of enabling -W impure-v as default) (#19779) 2023-11-06 14:27:00 +02:00
address_windows.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
afunix.h net: ipv6 support, merge unix+ip;[pack:x] attribute (#9904) 2021-06-13 23:53:38 +03:00
common.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
errors.c.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
ipv6_v6only.h net: ipv6 support, merge unix+ip;[pack:x] attribute (#9904) 2021-06-13 23:53:38 +03:00
net_nix.c.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
net_windows.c.v net: make net.fionbio and net.msg_nosignal constants public in net_windows.c.v (#20183) 2023-12-15 15:58:05 +02:00
README.md docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00
socket.v all: change optional to result of io (#16075) 2022-10-16 09:28:57 +03:00
socket_options.c.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
tcp.c.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
tcp_read_line.c.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
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 all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
tcp_test.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
udp.c.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
udp_test.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
util.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00

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.