1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/net
2022-10-03 21:56:06 +03:00
..
conv ci: do not use htonll and ntohll on windows, use the portable versions instead. 2021-10-02 18:21:16 +03:00
ftp checker: fix nested struct reference type field initialized check. (fix: #15741) (#15752) 2022-09-15 07:59:31 +03:00
html checker: fix nested struct reference type field initialized check. (fix: #15741) (#15752) 2022-09-15 07:59:31 +03:00
http net.ssl: switch to mbedtls over openssl (#15841) 2022-09-22 16:50:34 +03:00
mbedtls net.ssl: switch to mbedtls over openssl (#15841) 2022-09-22 16:50:34 +03:00
openssl openssl: add unsafe blocks to int -> enum blocks (#15957) 2022-10-03 16:32:37 +03:00
smtp checker: allow EnumName(number) casts only inside unsafe{} blocks (#15932) 2022-10-02 22:39:11 +03:00
ssl net.ssl: switch to mbedtls over openssl (#15841) 2022-09-22 16:50:34 +03:00
unix tests: unify all temporary files/folders under $VTMP/v, that can be cleaned by v wipe-cache (#15774) 2022-09-16 04:56:19 +03:00
urllib net.urllib: add a URL.debug() method, returning the values of all the URL's fields 2022-09-29 10:38:11 +03:00
websocket checker: allow EnumName(number) casts only inside unsafe{} blocks (#15932) 2022-10-02 22:39:11 +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 checker: improve pub struct check (fix #14446) (#14777) 2022-06-19 17:42:22 +03:00
address_darwin.c.v checker: improve pub struct check (fix #14446) (#14777) 2022-06-19 17:42:22 +03: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 checker: improve pub struct check (fix #14446) (#14777) 2022-06-19 17:42:22 +03:00
address_freebsd.c.v checker: improve pub struct check (fix #14446) (#14777) 2022-06-19 17:42:22 +03:00
address_linux.c.v checker: improve pub struct check (fix #14446) (#14777) 2022-06-19 17:42:22 +03:00
address_netbsd.c.v checker: improve pub struct check (fix #14446) (#14777) 2022-06-19 17:42:22 +03:00
address_openbsd.c.v checker: improve pub struct check (fix #14446) (#14777) 2022-06-19 17:42:22 +03:00
address_test.v all: byte => u8 2022-04-15 14:58:56 +03:00
address_windows.c.v checker: improve pub struct check (fix #14446) (#14777) 2022-06-19 17:42:22 +03:00
address.v checker: allow EnumName(number) casts only inside unsafe{} blocks (#15932) 2022-10-02 22:39:11 +03:00
afunix.h net: ipv6 support, merge unix+ip;[pack:x] attribute (#9904) 2021-06-13 23:53:38 +03:00
common.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
errors.v net: add failed addresses + details on connect errors, make connect more robust in the default non blocking mode (#15364) 2022-08-07 10:40:05 +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: add failed addresses + details on connect errors, make connect more robust in the default non blocking mode (#15364) 2022-08-07 10:40:05 +03:00
net_windows.c.v net: add unsafe block to int -> enum cast (#15961) 2022-10-03 21:56:06 +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 net: ipv6 support, merge unix+ip;[pack:x] attribute (#9904) 2021-06-13 23:53:38 +03:00
socket.v ci: vfmt vlib/net/socket.v 2022-02-22 15:21:20 +02:00
tcp_read_line.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
tcp_self_dial_from_many_clients_test.v tests: make tcp_self_dial_from_many_clients_test.v more robust (use shared ctx) 2022-08-20 13:32:59 +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: make error handling the same as the main function (#15825) 2022-09-21 19:45:43 +03:00
tcp.v net: fix typo (#15688) 2022-09-07 16:35:28 +03:00
udp_test.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
udp.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
util.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +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.