1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/net
2022-05-10 14:00:55 +03:00
..
conv
ftp all: replace []byte with []u8 2022-04-15 15:35:35 +03:00
html all: byte => u8 2022-04-15 14:58:56 +03:00
http net.http: fix crash on Windows when using Boehm GC (#14351) 2022-05-10 14:00:55 +03:00
openssl all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
smtp net.smtp: correct date in smtp body (#14326) 2022-05-08 09:15:45 +03:00
unix all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
urllib all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
websocket checker: error if smaller signed == unsigned (#14078) 2022-04-25 12:09:25 +03:00
aasocket.c.v net: ensure that net and net.unix can be imported together in the same program 2022-02-18 11:47:56 +02:00
address_android.c.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
address_darwin.c.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
address_default.c.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
address_dragonfly.c.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
address_freebsd.c.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
address_linux.c.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
address_netbsd.c.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
address_openbsd.c.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
address_test.v all: byte => u8 2022-04-15 14:58:56 +03:00
address_windows.c.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
address.v net: byte fixes 2022-04-15 15:55:39 +03:00
afunix.h
common.v checker: make using err.msg and err.code produce an *actual* notice, even with the present compatibility hack (will be *removed* in 2022-06-01) 2022-04-12 14:56:02 +03:00
errors.v builtin: change IError msg and code to methods + fix vlib, add a deprecation notice for the old usages (#13041) 2022-02-11 15:52:33 +02:00
ipv6_v6only.h
net_nix.c.v
net_windows.c.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
README.md docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00
socket_options.c.v
socket.v ci: vfmt vlib/net/socket.v 2022-02-22 15:21:20 +02:00
tcp_read_line.v net: fix byte buffers 2022-04-15 15:57:45 +03:00
tcp_simple_client_server_test.v all: replace []byte with []u8 2022-04-15 15:35:35 +03:00
tcp_test.v tests: support for marking _test.v files with // vtest flaky: true, to reduce false positives from the CI 2022-04-30 13:30:02 +03:00
tcp.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
udp_test.v all: replace []byte with []u8 2022-04-15 15:35:35 +03:00
udp.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
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.