v/vlib/net
2024-07-12 14:23:50 +03:00
..
conv doc: update trim_doc_node_description, make module readmes more uniform (#20792) 2024-02-12 12:38:47 +02:00
ftp breaking,net.ftp: allow to choose a different port than port 21 (change FTP.connect to accept host:port, not just a host address) (#21185) 2024-04-05 11:23:01 +03:00
html net.html: quick workaround for a cgen problem for const x = int(0x80000000) 2024-06-01 11:29:09 +03:00
http net.http, veb, vweb, x.vweb: add mime type text/x-vlang, for .v and .vsh file extensions (#21851) 2024-07-12 14:23:50 +03:00
mbedtls fmt: implement wrapping function's super long arguments (fix #15545, fix #21643) (#21782) 2024-07-02 23:10:00 +03:00
openssl openssl: more verbose error; libgc: make compile on arm macs 2024-06-07 11:48:27 +03:00
smtp breaking,checker: disallow initializing private struct fields outside structs module (#21183) 2024-04-12 13:53:02 +03:00
socks all: fix typos (#21089) 2024-03-25 12:18:27 +02:00
ssl all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
unix ci: shorten path used for unix domain socket tests (to fit in Windows path limits) 2024-05-24 20:15:50 +03:00
urllib vlib: simplify byte character conditions by using methods like is_capital, is_lower, is_letter etc (#21725) 2024-06-25 09:55:08 +03:00
websocket all: use apt over apt-get for common APT subcommands (#21359) 2024-04-26 21:01:52 +03:00
aasocket.c.v fmt: implement wrapping function's super long arguments (fix #15545, fix #21643) (#21782) 2024-07-02 23:10:00 +03:00
address.c.v net: improve error message in .port() 2024-05-05 21:22:36 +03: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 net: add a .port()! method for net.Addr (#21412) 2024-05-05 20:12:33 +03:00
address_windows.c.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
afunix.h net: ipv6 support, merge unix+ip;[pack:x] attribute (#9904) 2021-06-13 23:53:38 +03:00
common.c.v time: update unix time acces, fix issues related to deviating unix times (#21293) 2024-04-17 00:33:37 +03:00
dial_tcp_with_bind_test.v net: reduce flakyness of tcp test (#20761) 2024-02-09 11:52:27 +02:00
errors.c.v all: unwrap const() blocks 2023-11-25 10:02:51 +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 vlib: make ./v -Wimpure-v -W test vlib/ pass on Linux (#21554) 2024-05-23 16:21:01 +03:00
net_windows.c.v vlib: make ./v -Wimpure-v -W test vlib/ pass on Linux (#21554) 2024-05-23 16:21:01 +03:00
README.md doc: update trim_doc_node_description, make module readmes more uniform (#20792) 2024-02-12 12:38:47 +02:00
socket.c.v vlib: make ./v -Wimpure-v -W test vlib/ pass on Linux (#21554) 2024-05-23 16:21:01 +03:00
socket_options.c.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
tcp.c.v net: fix TcpConn.peer_ip/0 to only return the ip address, without the port number (#21831) 2024-07-10 06:12:37 +03:00
tcp_non_blocking_test.v vlib: make ./v -Wimpure-v -W test vlib/ pass on Linux (#21554) 2024-05-23 16:21:01 +03:00
tcp_read_line.c.v net: fix non-blocking read/write (#20438) 2024-02-08 20:18:29 +02: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 net: fix TcpConn.peer_ip/0 to only return the ip address, without the port number (#21831) 2024-07-10 06:12:37 +03:00
tcp_test.v net: fix TcpConn.peer_ip/0 to only return the ip address, without the port number (#21831) 2024-07-10 06:12:37 +03:00
udp.c.v time: update unix time acces, fix issues related to deviating unix times (#21293) 2024-04-17 00:33:37 +03:00
udp_test.v vfmt: change all '$expr' to '${expr}' (#16428) 2022-11-15 16:53:13 +03:00
util.v net: fix function name in split_address doc comment (#20794) 2024-02-12 03:35:41 +02: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.