Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ambrop72/badvpn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-02-02tun2socks: Remove localhost limination for SOCKS5 UDP.Ambroz Bizjak
The UDP socket is bound to the same IP address as was automatically selected for the TCP socket, and the port number is set to zero to let the kernel pick it. The actual bound address with the assigned port number is sent to the SOCKS server as DST.ADDR.
2020-02-02Fixes and refactoring for SOCKS5 UDP.Ambroz Bizjak
2020-02-02Implement optional support for SOCKS5-UDPBen Schwartz
This change adds a new option, --socks5-udp. If this option is present, and no UDP gateway is specified, UDP packets will no longer be dropped. Instead, the client will use the SOCKS5 UDP ASSOCIATE command to route UDP packets through the proxy server. This implementation is intended for use with any UDP data, and it includes an optimization for packets containing DNS queries. However, this implementation is currently limited to localhost SOCKS5 servers. SOCKS5-UDP does not perform well over actual network links, as it requires several roundtrips to the server and is not compatible with NAT. This implementation is currently in use in a fork of tun2socks used by Outline (https://getoutline.org) and Intra (https://getintra.org). Fixes https://github.com/ambrop72/badvpn/issues/56
2014-10-16Use badvpn_add_library for all internal libraries.Ambroz Bizjak
2013-01-23fix some pointer casts which are invalid in C++, to get compiling with MSVC ↵ambrop7
working again
2012-12-30fix many potential aliasing issuesambrop7
2012-11-21BSocksClient: fix bugambrop7
2012-11-21tun2socks: implement SOCKS password authenticationambrop7
2012-07-24port to compile with MSVCambrop7
2012-01-27switch to using the New BSD Licenseambrop7
2011-06-18cosmetic changesambrop7
2011-05-28Replace BSocket with BConnection and BDatagram. On Windows, do all I/O ↵ambrop7
through IOCP.
2011-05-16BSocksClient: cosmetic changes, documentationambrop7
2011-05-15rearrange source flow such that 'flow' does not depend on 'system' ambrop7
2011-05-07minor changesambrop7
2011-03-12FreeBSD support.ambrop7
2011-01-22don't log error details in error handlersambrop7
PacketProtoDecoder: log errors
2011-01-22FlowError: pass an int error code instead of a void *ambrop7
2010-12-27DebugError: don't use a dead var, use a job to enforce destruction, allowing ↵ambrop7
the destruction to be done from the handler's jobs (rather than just the handler)
2010-12-27BSocksClient: port to DebugErrorambrop7
2010-11-27Add BSocksClient, a simple SOCKS5 client. Regenerate generated sources.ambrop7