v/vlib/net
2024-02-08 20:18:29 +02:00
..
conv orm.pg: fix f32 and f64 endianness (#20412) 2024-01-06 22:27:10 +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 net.http: add a temporary fix for the intermittent segfault with http.get_ text/1 and -prod -cc gcc 13.2.0 (fix #20506) (#20660) 2024-01-26 11:33:09 +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 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
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 docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +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: fix non-blocking read/write (#20438) 2024-02-08 20:18:29 +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: remove unused import in tcp_test.v 2024-01-10 17:15:20 +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 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.