* TCP client configured to trust all certificates
* HTTPS server with a self-signed certificate
Signed-off-by: Julien Ponge <julien.ponge@insa-lyon.fr>
add SOCKS proxy support to HttpClient and NetClient
changed proxy options into a ProxyObject class
add small socks4/5 proxy for testing
move proxyOptions property to ClientOptionsBase
add unit tests
add missing ctx.fireXXX in VertxHandler
move ProxyChannelProvider to its own package
add classnotfound check to NetClientImpl
add to documentation about proxy config
Signed-off-by: alexlehm <alexlehm@gmail.com>
Added missing tests for host verification to HttpTLSTest
Please note breaking change in NetSocket.java
public NetSocket upgradeToSsl(Handler<Void> handler);
changes to
public NetSocket upgradeToSsl(String host, int port, Handler<Void> handler);
Signed-off-by: Daniel Lindberg <daniel.lindberg@omegapoint.se>
Add a new method to set client auth on the options and deprecated the boolean "clientAuthRequired". Going forward people should use "setClientAuth()".
Signed-off-by: Manish Kumar <manishk@vmware.com>