v/vlib/net
2024-03-11 18:21:06 +03:00
..
conv doc: update trim_doc_node_description, make module readmes more uniform (#20792) 2024-02-12 12:38:47 +02:00
ftp all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
html net.html: fix notices with latest V, when compiling code with import net.html 2024-01-01 14:41:33 +02:00
http gg: fix empty circle in native; http: post_form_with_cookies; veb: print veb action in html errors 2024-03-11 18:21:06 +03: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 net.smtp: implement mail attachment support (fix #19920) (#20640) 2024-01-24 07:33:25 +02: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 net: fix non-blocking read/write (#20438) 2024-02-08 20:18:29 +02:00
urllib net.urllib: fix parsing url error, when querypath is '//' (fix #20476) (#20504) 2024-01-12 22:51:48 +02:00
websocket websocket: enable using an already existing connection (from vweb or another http server) (#20103) 2023-12-19 14:16:07 +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 net: fix non-blocking read/write (#20438) 2024-02-08 20:18:29 +02:00
dial_tcp_with_bind_test.v net: reduce flakyness of tcp test (#20761) 2024-02-09 11:52:27 +02: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 net: fix non-blocking read/write (#20438) 2024-02-08 20:18:29 +02:00
net_windows.c.v net: fix non-blocking read/write (#20438) 2024-02-08 20:18:29 +02:00
README.md doc: update trim_doc_node_description, make module readmes more uniform (#20792) 2024-02-12 12:38:47 +02:00
socket.v net: fix non-blocking read/write (#20438) 2024-02-08 20:18:29 +02:00
socket_options.c.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
tcp.c.v net: workaround a -prod -cc gcc bug (#20872) 2024-02-19 15:19:11 +02:00
tcp_non_blocking_test.v net: fix non-blocking read/write (#20438) 2024-02-08 20:18:29 +02:00
tcp_read_line.c.v net: fix non-blocking read/write (#20438) 2024-02-08 20:18:29 +02: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 net: reduce flakyness of tcp test (#20761) 2024-02-09 11:52:27 +02:00
udp.c.v net: fix non-blocking read/write (#20438) 2024-02-08 20:18:29 +02:00
udp_test.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
util.v net: fix function name in split_address doc comment (#20794) 2024-02-12 03:35:41 +02: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.