Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestRecordingProxyHandler (0.19 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/bbottema/javasocksproxyserver/TestRecordingProxyHandler.java

     * made, but does not actually make them.
     *
     * Must live in same package as {@link Socks4Impl}.
     */
    public final class TestRecordingProxyHandler extends ProxyHandler {
        private final List<InetAddress> connectionTargets;
    
        public TestRecordingProxyHandler(Socket clientSocket, List<InetAddress> connectionTargets) {
            super(clientSocket);
            this.connectionTargets = connectionTargets;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/bbottema/javasocksproxyserver/TestRecordingSocksServer.java

                    clientSocket.setSoTimeout(SocksConstants.DEFAULT_SERVER_TIMEOUT);
                    LOGGER.debug("Connection from : " + Utils.getSocketInfo(clientSocket));
                    new Thread(new TestRecordingProxyHandler(clientSocket, connectionTargets)).start();
                } catch (InterruptedIOException e) {
                    // This exception is thrown when accept timeout is expired
                } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top