net-ssh 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/doc/LICENSE-BSD +1 -1
- data/doc/LICENSE-RUBY +1 -1
- data/doc/manual-html/chapter-1.html +4 -4
- data/doc/manual-html/chapter-2.html +2 -2
- data/doc/manual-html/chapter-3.html +2 -2
- data/doc/manual-html/chapter-4.html +2 -2
- data/doc/manual-html/chapter-5.html +2 -2
- data/doc/manual-html/chapter-6.html +2 -2
- data/doc/manual-html/chapter-7.html +2 -2
- data/doc/manual-html/index.html +2 -2
- data/doc/manual/parts/0003.txt +1 -1
- data/doc/manual/parts/0005.txt +1 -1
- data/examples/channel-demo.rb +1 -1
- data/examples/port-forward.rb +1 -1
- data/examples/process-demo.rb +1 -1
- data/examples/remote-net-port-forward.rb +1 -1
- data/examples/remote-port-forward.rb +1 -1
- data/examples/shell-demo.rb +1 -1
- data/examples/ssh-client.rb +1 -1
- data/examples/sync-shell-demo.rb +1 -1
- data/examples/tail-demo.rb +1 -1
- data/lib/net/ssh.rb +1 -1
- data/lib/net/ssh/connection/channel.rb +1 -1
- data/lib/net/ssh/connection/constants.rb +1 -1
- data/lib/net/ssh/connection/driver.rb +1 -1
- data/lib/net/ssh/connection/services.rb +1 -1
- data/lib/net/ssh/connection/term.rb +1 -1
- data/lib/net/ssh/errors.rb +1 -1
- data/lib/net/ssh/proxy/errors.rb +1 -1
- data/lib/net/ssh/proxy/http.rb +1 -1
- data/lib/net/ssh/proxy/socks4.rb +1 -1
- data/lib/net/ssh/proxy/socks5.rb +1 -1
- data/lib/net/ssh/service/forward/driver.rb +1 -1
- data/lib/net/ssh/service/forward/local-network-handler.rb +1 -1
- data/lib/net/ssh/service/forward/remote-network-handler.rb +1 -1
- data/lib/net/ssh/service/forward/services.rb +1 -1
- data/lib/net/ssh/service/process/driver.rb +1 -1
- data/lib/net/ssh/service/process/open.rb +1 -1
- data/lib/net/ssh/service/process/popen3.rb +1 -1
- data/lib/net/ssh/service/process/services.rb +1 -1
- data/lib/net/ssh/service/services.rb +1 -1
- data/lib/net/ssh/service/shell/driver.rb +1 -1
- data/lib/net/ssh/service/shell/services.rb +1 -1
- data/lib/net/ssh/service/shell/shell.rb +1 -1
- data/lib/net/ssh/service/shell/sync.rb +1 -1
- data/lib/net/ssh/session.rb +1 -1
- data/lib/net/ssh/transport/algorithm-negotiator.rb +1 -1
- data/lib/net/ssh/transport/compress/compressor.rb +1 -1
- data/lib/net/ssh/transport/compress/decompressor.rb +1 -1
- data/lib/net/ssh/transport/compress/none-compressor.rb +1 -1
- data/lib/net/ssh/transport/compress/none-decompressor.rb +1 -1
- data/lib/net/ssh/transport/compress/services.rb +1 -1
- data/lib/net/ssh/transport/compress/zlib-compressor.rb +1 -1
- data/lib/net/ssh/transport/compress/zlib-decompressor.rb +1 -1
- data/lib/net/ssh/transport/constants.rb +1 -1
- data/lib/net/ssh/transport/errors.rb +1 -1
- data/lib/net/ssh/transport/identity-cipher.rb +1 -1
- data/lib/net/ssh/transport/kex/dh-gex.rb +1 -1
- data/lib/net/ssh/transport/kex/dh.rb +1 -1
- data/lib/net/ssh/transport/kex/services.rb +1 -1
- data/lib/net/ssh/transport/ossl/buffer-factory.rb +1 -1
- data/lib/net/ssh/transport/ossl/buffer.rb +1 -1
- data/lib/net/ssh/transport/ossl/cipher-factory.rb +1 -1
- data/lib/net/ssh/transport/ossl/digest-factory.rb +1 -1
- data/lib/net/ssh/transport/ossl/hmac-factory.rb +1 -1
- data/lib/net/ssh/transport/ossl/hmac/hmac.rb +1 -1
- data/lib/net/ssh/transport/ossl/hmac/md5-96.rb +1 -1
- data/lib/net/ssh/transport/ossl/hmac/md5.rb +1 -1
- data/lib/net/ssh/transport/ossl/hmac/none.rb +1 -1
- data/lib/net/ssh/transport/ossl/hmac/services.rb +1 -1
- data/lib/net/ssh/transport/ossl/hmac/sha1-96.rb +1 -1
- data/lib/net/ssh/transport/ossl/hmac/sha1.rb +1 -1
- data/lib/net/ssh/transport/ossl/key-factory.rb +1 -1
- data/lib/net/ssh/transport/ossl/services.rb +1 -1
- data/lib/net/ssh/transport/packet-stream.rb +1 -1
- data/lib/net/ssh/transport/services.rb +1 -1
- data/lib/net/ssh/transport/session.rb +1 -1
- data/lib/net/ssh/transport/version-negotiator.rb +1 -1
- data/lib/net/ssh/userauth/agent.rb +1 -1
- data/lib/net/ssh/userauth/constants.rb +1 -1
- data/lib/net/ssh/userauth/driver.rb +1 -1
- data/lib/net/ssh/userauth/methods/hostbased.rb +1 -1
- data/lib/net/ssh/userauth/methods/keyboard-interactive.rb +1 -1
- data/lib/net/ssh/userauth/methods/password.rb +1 -1
- data/lib/net/ssh/userauth/methods/publickey.rb +1 -1
- data/lib/net/ssh/userauth/methods/services.rb +1 -1
- data/lib/net/ssh/userauth/pageant.rb +1 -1
- data/lib/net/ssh/userauth/services.rb +1 -1
- data/lib/net/ssh/userauth/userkeys.rb +1 -1
- data/lib/net/ssh/util/buffer.rb +1 -1
- data/lib/net/ssh/util/openssl.rb +1 -1
- data/lib/net/ssh/util/prompter.rb +1 -1
- data/lib/net/ssh/version.rb +2 -2
- data/test/ALL-TESTS.rb +2 -5
- data/test/connection/tc_channel.rb +2 -2
- data/test/connection/tc_driver.rb +2 -2
- data/test/connection/tc_integration.rb +2 -2
- data/test/proxy/tc_http.rb +2 -2
- data/test/proxy/tc_socks4.rb +2 -2
- data/test/proxy/tc_socks5.rb +2 -2
- data/test/service/forward/tc_driver.rb +2 -2
- data/test/service/forward/tc_local_network_handler.rb +2 -2
- data/test/service/forward/tc_remote_network_handler.rb +2 -2
- data/test/service/process/tc_driver.rb +2 -2
- data/test/service/process/tc_integration.rb +2 -2
- data/test/service/process/tc_open.rb +2 -2
- data/test/service/process/tc_popen3.rb +2 -2
- data/test/tc_integration.rb +2 -2
- data/test/transport/compress/tc_none_compress.rb +2 -2
- data/test/transport/compress/tc_none_decompress.rb +2 -2
- data/test/transport/compress/tc_zlib_compress.rb +2 -2
- data/test/transport/compress/tc_zlib_decompress.rb +2 -2
- data/test/transport/kex/tc_dh.rb +12 -11
- data/test/transport/kex/tc_dh_gex.rb +3 -3
- data/test/transport/ossl/hmac/tc_hmac.rb +2 -2
- data/test/transport/ossl/hmac/tc_md5.rb +2 -2
- data/test/transport/ossl/hmac/tc_md5_96.rb +2 -2
- data/test/transport/ossl/hmac/tc_none.rb +2 -2
- data/test/transport/ossl/hmac/tc_sha1.rb +2 -2
- data/test/transport/ossl/hmac/tc_sha1_96.rb +2 -2
- data/test/transport/ossl/tc_buffer.rb +2 -2
- data/test/transport/ossl/tc_buffer_factory.rb +2 -2
- data/test/transport/ossl/tc_cipher_factory.rb +2 -2
- data/test/transport/ossl/tc_digest_factory.rb +2 -2
- data/test/transport/ossl/tc_hmac_factory.rb +2 -2
- data/test/transport/ossl/tc_key_factory.rb +2 -2
- data/test/transport/tc_algorithm_negotiator.rb +2 -2
- data/test/transport/tc_identity_cipher.rb +2 -2
- data/test/transport/tc_integration.rb +2 -2
- data/test/transport/tc_packet_stream.rb +2 -2
- data/test/transport/tc_session.rb +2 -2
- data/test/transport/tc_version_negotiator.rb +2 -2
- data/test/userauth/methods/tc_hostbased.rb +2 -2
- data/test/userauth/methods/tc_password.rb +2 -2
- data/test/userauth/methods/tc_publickey.rb +2 -2
- data/test/userauth/tc_agent.rb +2 -2
- data/test/userauth/tc_driver.rb +2 -2
- data/test/userauth/tc_integration.rb +2 -2
- data/test/userauth/tc_userkeys.rb +2 -2
- data/test/util/tc_buffer.rb +2 -2
- metadata +252 -249
data/doc/LICENSE-BSD
CHANGED
data/doc/LICENSE-RUBY
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Net::SSH is copyrighted free software by Jamis Buck <
|
1
|
+
Net::SSH is copyrighted free software by Jamis Buck <jamis@37signals.com>.
|
2
2
|
You can redistribute it and/or modify it under either the terms of the GPL
|
3
3
|
(see the file GPL), or the conditions below:
|
4
4
|
|
@@ -14,8 +14,8 @@
|
|
14
14
|
</div>
|
15
15
|
</td><td valign='middle' align='right'>
|
16
16
|
<div class="info">
|
17
|
-
Net::SSH Version: <strong>1.0.
|
18
|
-
Manual Last Updated: <strong>2005-
|
17
|
+
Net::SSH Version: <strong>1.0.4</strong><br />
|
18
|
+
Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
|
19
19
|
</div>
|
20
20
|
</td></tr>
|
21
21
|
</table>
|
@@ -318,7 +318,7 @@ ruby setup.rb install</pre></div></div></div>
|
|
318
318
|
<p>This manual (in any form, be it source or otherwise) and the scripts and templates used to generate it, are all distributed under the <a href="http://creativecommons.org">Creative Commons</a> <a href="http://creativecommons.org/licenses/by-sa/2.0">Attribution-ShareAlike</a> license.</p>
|
319
319
|
|
320
320
|
|
321
|
-
<p>If you desire permission to use either Net::SSH or the manual in a manner incompatible with these licenses, please contact the copyright holder (<a href="mailto:
|
321
|
+
<p>If you desire permission to use either Net::SSH or the manual in a manner incompatible with these licenses, please contact the copyright holder (<a href="mailto:jamis@37signals.com">Jamis Buck</a>) in order to negotiate a more compatible license.</p>
|
322
322
|
</div>
|
323
323
|
|
324
324
|
|
@@ -366,7 +366,7 @@ ruby setup.rb install</pre></div></div></div>
|
|
366
366
|
|
367
367
|
|
368
368
|
<div class="section">
|
369
|
-
<p>Net::SSH was written by <a href="mailto:
|
369
|
+
<p>Net::SSH was written by <a href="mailto:jamis@37signals.com">Jamis Buck</a>. Feel free to send him compliments, candy, money, praise, or new feature patches—he likes all those things. You can send him questions and suggestions, too, if you really want to. However, for bug reports and general feature requests, please use the trackers on the <a href="http://rubyforge.org/projects/net-ssh">Net::SSH project page</a>.</p>
|
370
370
|
</div>
|
371
371
|
|
372
372
|
|
@@ -14,8 +14,8 @@
|
|
14
14
|
</div>
|
15
15
|
</td><td valign='middle' align='right'>
|
16
16
|
<div class="info">
|
17
|
-
Net::SSH Version: <strong>1.0.
|
18
|
-
Manual Last Updated: <strong>2005-
|
17
|
+
Net::SSH Version: <strong>1.0.4</strong><br />
|
18
|
+
Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
|
19
19
|
</div>
|
20
20
|
</td></tr>
|
21
21
|
</table>
|
@@ -14,8 +14,8 @@
|
|
14
14
|
</div>
|
15
15
|
</td><td valign='middle' align='right'>
|
16
16
|
<div class="info">
|
17
|
-
Net::SSH Version: <strong>1.0.
|
18
|
-
Manual Last Updated: <strong>2005-
|
17
|
+
Net::SSH Version: <strong>1.0.4</strong><br />
|
18
|
+
Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
|
19
19
|
</div>
|
20
20
|
</td></tr>
|
21
21
|
</table>
|
@@ -14,8 +14,8 @@
|
|
14
14
|
</div>
|
15
15
|
</td><td valign='middle' align='right'>
|
16
16
|
<div class="info">
|
17
|
-
Net::SSH Version: <strong>1.0.
|
18
|
-
Manual Last Updated: <strong>2005-
|
17
|
+
Net::SSH Version: <strong>1.0.4</strong><br />
|
18
|
+
Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
|
19
19
|
</div>
|
20
20
|
</td></tr>
|
21
21
|
</table>
|
@@ -14,8 +14,8 @@
|
|
14
14
|
</div>
|
15
15
|
</td><td valign='middle' align='right'>
|
16
16
|
<div class="info">
|
17
|
-
Net::SSH Version: <strong>1.0.
|
18
|
-
Manual Last Updated: <strong>2005-
|
17
|
+
Net::SSH Version: <strong>1.0.4</strong><br />
|
18
|
+
Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
|
19
19
|
</div>
|
20
20
|
</td></tr>
|
21
21
|
</table>
|
@@ -14,8 +14,8 @@
|
|
14
14
|
</div>
|
15
15
|
</td><td valign='middle' align='right'>
|
16
16
|
<div class="info">
|
17
|
-
Net::SSH Version: <strong>1.0.
|
18
|
-
Manual Last Updated: <strong>2005-
|
17
|
+
Net::SSH Version: <strong>1.0.4</strong><br />
|
18
|
+
Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
|
19
19
|
</div>
|
20
20
|
</td></tr>
|
21
21
|
</table>
|
@@ -14,8 +14,8 @@
|
|
14
14
|
</div>
|
15
15
|
</td><td valign='middle' align='right'>
|
16
16
|
<div class="info">
|
17
|
-
Net::SSH Version: <strong>1.0.
|
18
|
-
Manual Last Updated: <strong>2005-
|
17
|
+
Net::SSH Version: <strong>1.0.4</strong><br />
|
18
|
+
Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
|
19
19
|
</div>
|
20
20
|
</td></tr>
|
21
21
|
</table>
|
data/doc/manual-html/index.html
CHANGED
@@ -14,8 +14,8 @@
|
|
14
14
|
</div>
|
15
15
|
</td><td valign='middle' align='right'>
|
16
16
|
<div class="info">
|
17
|
-
Net::SSH Version: <strong>1.0.
|
18
|
-
Manual Last Updated: <strong>2005-
|
17
|
+
Net::SSH Version: <strong>1.0.4</strong><br />
|
18
|
+
Manual Last Updated: <strong>2005-12-24 20:02 UTC</strong>
|
19
19
|
</div>
|
20
20
|
</td></tr>
|
21
21
|
</table>
|
data/doc/manual/parts/0003.txt
CHANGED
@@ -2,5 +2,5 @@ Net::SSH is made available under either the BSD license, or the same license Rub
|
|
2
2
|
|
3
3
|
This manual (in any form, be it source or otherwise) and the scripts and templates used to generate it, are all distributed under the "Creative Commons":http://creativecommons.org "Attribution-ShareAlike":http://creativecommons.org/licenses/by-sa/2.0 license.
|
4
4
|
|
5
|
-
If you desire permission to use either Net::SSH or the manual in a manner incompatible with these licenses, please contact the copyright holder ("Jamis Buck":mailto:
|
5
|
+
If you desire permission to use either Net::SSH or the manual in a manner incompatible with these licenses, please contact the copyright holder ("Jamis Buck":mailto:jamis@37signals.com) in order to negotiate a more compatible license.
|
6
6
|
|
data/doc/manual/parts/0005.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Net::SSH was written by "Jamis Buck":mailto:
|
1
|
+
Net::SSH was written by "Jamis Buck":mailto:jamis@37signals.com. Feel free to send him compliments, candy, money, praise, or new feature patches--he likes all those things. You can send him questions and suggestions, too, if you really want to. However, for bug reports and general feature requests, please use the trackers on the "Net::SSH project page":http://rubyforge.org/projects/net-ssh.
|
data/examples/channel-demo.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/examples/port-forward.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/examples/process-demo.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/examples/shell-demo.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/examples/ssh-client.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/examples/sync-shell-demo.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/examples/tail-demo.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/lib/net/ssh.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/lib/net/ssh/errors.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/lib/net/ssh/proxy/errors.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/lib/net/ssh/proxy/http.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/lib/net/ssh/proxy/socks4.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/lib/net/ssh/proxy/socks5.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
data/lib/net/ssh/session.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#--
|
2
2
|
# =============================================================================
|
3
|
-
# Copyright (c) 2004,2005 Jamis Buck (
|
3
|
+
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
|
4
4
|
# All rights reserved.
|
5
5
|
#
|
6
6
|
# This source file is distributed as part of the Net::SSH Secure Shell Client
|