v/vlib/net
2023-11-17 10:50:01 +02:00
..
conv all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
ftp net.ftp: fix dir() for file names, which contain spaces (fix #18800) (#18804) 2023-07-07 06:50:20 +03:00
html all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
http parser: deprecate old attribute syntax & update remaining (missed) attributes (#19879) 2023-11-15 13:07:59 +02:00
mbedtls all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
openssl net.openssl: add flags for preferring openssl from the ports collection (in /usr/local) (#19904) 2023-11-17 10:50:01 +02:00
smtp all: update attributes to use new syntax 2023-11-15 16:16:01 +11: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: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
urllib all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
websocket all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
aasocket.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
address.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_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
common.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
errors.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
ipv6_v6only.h
net_nix.c.v net.unix: update the module to make it compatible with windows and coroutines (#19831) 2023-11-11 10:07:56 +02:00
net_windows.c.v net.unix: update the module to make it compatible with windows and coroutines (#19831) 2023-11-11 10:07:56 +02:00
README.md
socket.v all: change optional to result of io (#16075) 2022-10-16 09:28:57 +03:00
socket_options.c.v net.unix: update the module to make it compatible with windows and coroutines (#19831) 2023-11-11 10:07:56 +02:00
tcp.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
tcp_read_line.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11: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 vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
tcp_test.v ci: fix vlib/net/tcp_test.v (change return type of one_shot_echo_server from ? to !) 2023-09-30 19:56:40 +03:00
udp.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
udp_test.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
util.v all: change optional to result of io (#16075) 2022-10-16 09:28:57 +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.