mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00

With this change, example vweb programs, will continue to be available to both ipv6 and ipv4 connections from the same machine, even after doing (on linux): `echo 1 | sudo tee /proc/sys/net/ipv6/bindv6only` Previously, after that, vweb programs responded only to ipv6 connections, but not to ipv4 ones, i.e. opening http://127.0.0.1:8082/ stopped working, for `v run examples/vweb/vweb_example.v` . Note: GO web servers have the same behaviour, which is convenient for development/testing, since it makes the programs more consistent and robust in the face of OS settings changes.
vlib
Documentation
vlib
is the term for all modules included by default with V and
maintained as part of the V source code repository.
Some included modules depend on third party libraries, and these are kept
separate in the thirdparty
directory at the root level of the source
repository.