1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/net
Alexander Medvednikov 258d1f77dc net: fix byte buffers
2022-04-15 15:57:45 +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: fix byte buffers 2022-04-15 15:57:45 +03:00
openssl all: replace []byte with []u8 2022-04-15 15:35:35 +03:00
smtp all: byte => u8 2022-04-15 14:58:56 +03:00
unix all: replace []byte with []u8 2022-04-15 15:35:35 +03:00
urllib all: replace []byte with []u8 2022-04-15 15:35:35 +03:00
websocket net: byte fixes 2022-04-15 15:55:39 +03:00
aasocket.c.v
address_android.c.v net: byte fixes 2022-04-15 15:55:39 +03:00
address_darwin.c.v net: byte fixes 2022-04-15 15:55:39 +03:00
address_default.c.v
address_dragonfly.c.v net: byte fixes 2022-04-15 15:55:39 +03:00
address_freebsd.c.v net: byte fixes 2022-04-15 15:55:39 +03:00
address_linux.c.v net: byte fixes 2022-04-15 15:55:39 +03:00
address_netbsd.c.v net: byte fixes 2022-04-15 15:55:39 +03:00
address_openbsd.c.v net: byte fixes 2022-04-15 15:55:39 +03:00
address_test.v all: byte => u8 2022-04-15 14:58:56 +03:00
address_windows.c.v net: byte fixes 2022-04-15 15:55:39 +03:00
address.v net: byte fixes 2022-04-15 15:55:39 +03:00
afunix.h
common.v
errors.v
ipv6_v6only.h
net_nix.c.v
net_windows.c.v
README.md
socket_options.c.v
socket.v
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 all: replace []byte with []u8 2022-04-15 15:35:35 +03:00
tcp.v all: replace []byte with []u8 2022-04-15 15:35:35 +03:00
udp_test.v all: replace []byte with []u8 2022-04-15 15:35:35 +03:00
udp.v all: replace []byte with []u8 2022-04-15 15:35:35 +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.