forward-proxy 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ef1fa7e497462fc27f6b33ace589450994664c35c0e2744fae3a46c6caa0372
4
- data.tar.gz: a396b7121e8a512a518a033aaa14261d7b86fd0377cf6e29d183a34ba02ff010
3
+ metadata.gz: 7994877d0fdfd4f8c482823781a855c9af1199d9b45df5c65912eabcc2786180
4
+ data.tar.gz: '093d490188f128068f1ea444063ed61732fbb583245865aad8a90d50ee0b8532'
5
5
  SHA512:
6
- metadata.gz: af543772c2f4159b0697f3ad02d4a330f776b73f1ccbaab6e8eb0dff9a8b5a6855b515fea99165c884132e743fd65aff7ac5973916256bcd6f476102d9dad743
7
- data.tar.gz: e625cc351e9ce99744ff6ad00dac9c4e2e22c75cc0f8e4899c17736dcd06067398e1228bbebc6fb5ba07b44322f9806e62259c712f7d9bfddc89db5620045ded
6
+ metadata.gz: 572ca92444d60284f302b38f020a3718a82fee8048b3d6fc10d389af97c479142e3219022ac4c85bc12189025877fc9ce4aab7eac6f853ec6f2ffa4ded392f63
7
+ data.tar.gz: 113e37c5a6b6da31851464545c5b2774396835cdb23d794253ab81babce52392040adcfdc9d75e473851ea108dfa2f946c7071a2b4b3a13b737ac4ad08b94269
data/README.md CHANGED
@@ -38,7 +38,8 @@ forward-proxy
38
38
  Usage: forward-proxy [options]
39
39
  -p, --port=PORT Bind to specified port. Default: 9292
40
40
  -b, --binding=BINDING Bind to the specified ip. Default: 127.0.0.1
41
- -t, --threads=THREADS Specify the number of client threads. Default: 32
41
+ -t, --timeout=TIMEOUT Specify the connection timeout in seconds. Default: 300
42
+ -c, --threads=THREADS Specify the number of client threads. Default: 128
42
43
  -h, --help Prints this help.
43
44
  ```
44
45
 
data/exe/forward-proxy CHANGED
@@ -16,7 +16,7 @@ OptionParser.new do |parser|
16
16
  end
17
17
 
18
18
  parser.on("-tTIMEOUT", "--timeout=TIMEOUT", Integer,
19
- "Specify the connection timout in seconds. Default: 300") do |threads|
19
+ "Specify the connection timeout in seconds. Default: 300") do |threads|
20
20
  options[:timeout] = threads
21
21
  end
22
22
 
@@ -1,3 +1,3 @@
1
1
  module ForwardProxy
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forward-proxy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Moriarty