1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/net
2023-01-18 19:00:46 +02:00
..
conv all: replace generic <> with [] - part 2 (#16536) 2022-11-26 18:23:26 +02:00
ftp vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
html net.html: add get_tags_by_class_name (#17024) 2023-01-18 19:00:46 +02:00
http 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
mbedtls net.openssl, net.mbedtls: add support for -d trace_ssl, for easier tracing of binary protocol problems to https servers 2023-01-15 16:06:46 +02:00
openssl net.openssl, net.mbedtls: add support for -d trace_ssl, for easier tracing of binary protocol problems to https servers 2023-01-15 16:06:46 +02:00
smtp vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
ssl
unix vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
urllib 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
websocket checker: turn the pointer map notice into a warning and fix all code using it 2023-01-15 22:19:25 +01:00
aasocket.c.v
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 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
afunix.h
common.v
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 all: implement struct field optional and disallow storing result (#16392) 2022-11-17 07:51:50 +02: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 net: fix compilation with -d trace_tcp_data_write and -d trace_tcp_data_read; add .hex() dumping too for easier diagnosing of binary protocol level problems 2023-01-15 13:25:23 +02:00
udp_test.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
udp.v
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.