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.
Files changed (141) hide show
  1. data/doc/LICENSE-BSD +1 -1
  2. data/doc/LICENSE-RUBY +1 -1
  3. data/doc/manual-html/chapter-1.html +4 -4
  4. data/doc/manual-html/chapter-2.html +2 -2
  5. data/doc/manual-html/chapter-3.html +2 -2
  6. data/doc/manual-html/chapter-4.html +2 -2
  7. data/doc/manual-html/chapter-5.html +2 -2
  8. data/doc/manual-html/chapter-6.html +2 -2
  9. data/doc/manual-html/chapter-7.html +2 -2
  10. data/doc/manual-html/index.html +2 -2
  11. data/doc/manual/parts/0003.txt +1 -1
  12. data/doc/manual/parts/0005.txt +1 -1
  13. data/examples/channel-demo.rb +1 -1
  14. data/examples/port-forward.rb +1 -1
  15. data/examples/process-demo.rb +1 -1
  16. data/examples/remote-net-port-forward.rb +1 -1
  17. data/examples/remote-port-forward.rb +1 -1
  18. data/examples/shell-demo.rb +1 -1
  19. data/examples/ssh-client.rb +1 -1
  20. data/examples/sync-shell-demo.rb +1 -1
  21. data/examples/tail-demo.rb +1 -1
  22. data/lib/net/ssh.rb +1 -1
  23. data/lib/net/ssh/connection/channel.rb +1 -1
  24. data/lib/net/ssh/connection/constants.rb +1 -1
  25. data/lib/net/ssh/connection/driver.rb +1 -1
  26. data/lib/net/ssh/connection/services.rb +1 -1
  27. data/lib/net/ssh/connection/term.rb +1 -1
  28. data/lib/net/ssh/errors.rb +1 -1
  29. data/lib/net/ssh/proxy/errors.rb +1 -1
  30. data/lib/net/ssh/proxy/http.rb +1 -1
  31. data/lib/net/ssh/proxy/socks4.rb +1 -1
  32. data/lib/net/ssh/proxy/socks5.rb +1 -1
  33. data/lib/net/ssh/service/forward/driver.rb +1 -1
  34. data/lib/net/ssh/service/forward/local-network-handler.rb +1 -1
  35. data/lib/net/ssh/service/forward/remote-network-handler.rb +1 -1
  36. data/lib/net/ssh/service/forward/services.rb +1 -1
  37. data/lib/net/ssh/service/process/driver.rb +1 -1
  38. data/lib/net/ssh/service/process/open.rb +1 -1
  39. data/lib/net/ssh/service/process/popen3.rb +1 -1
  40. data/lib/net/ssh/service/process/services.rb +1 -1
  41. data/lib/net/ssh/service/services.rb +1 -1
  42. data/lib/net/ssh/service/shell/driver.rb +1 -1
  43. data/lib/net/ssh/service/shell/services.rb +1 -1
  44. data/lib/net/ssh/service/shell/shell.rb +1 -1
  45. data/lib/net/ssh/service/shell/sync.rb +1 -1
  46. data/lib/net/ssh/session.rb +1 -1
  47. data/lib/net/ssh/transport/algorithm-negotiator.rb +1 -1
  48. data/lib/net/ssh/transport/compress/compressor.rb +1 -1
  49. data/lib/net/ssh/transport/compress/decompressor.rb +1 -1
  50. data/lib/net/ssh/transport/compress/none-compressor.rb +1 -1
  51. data/lib/net/ssh/transport/compress/none-decompressor.rb +1 -1
  52. data/lib/net/ssh/transport/compress/services.rb +1 -1
  53. data/lib/net/ssh/transport/compress/zlib-compressor.rb +1 -1
  54. data/lib/net/ssh/transport/compress/zlib-decompressor.rb +1 -1
  55. data/lib/net/ssh/transport/constants.rb +1 -1
  56. data/lib/net/ssh/transport/errors.rb +1 -1
  57. data/lib/net/ssh/transport/identity-cipher.rb +1 -1
  58. data/lib/net/ssh/transport/kex/dh-gex.rb +1 -1
  59. data/lib/net/ssh/transport/kex/dh.rb +1 -1
  60. data/lib/net/ssh/transport/kex/services.rb +1 -1
  61. data/lib/net/ssh/transport/ossl/buffer-factory.rb +1 -1
  62. data/lib/net/ssh/transport/ossl/buffer.rb +1 -1
  63. data/lib/net/ssh/transport/ossl/cipher-factory.rb +1 -1
  64. data/lib/net/ssh/transport/ossl/digest-factory.rb +1 -1
  65. data/lib/net/ssh/transport/ossl/hmac-factory.rb +1 -1
  66. data/lib/net/ssh/transport/ossl/hmac/hmac.rb +1 -1
  67. data/lib/net/ssh/transport/ossl/hmac/md5-96.rb +1 -1
  68. data/lib/net/ssh/transport/ossl/hmac/md5.rb +1 -1
  69. data/lib/net/ssh/transport/ossl/hmac/none.rb +1 -1
  70. data/lib/net/ssh/transport/ossl/hmac/services.rb +1 -1
  71. data/lib/net/ssh/transport/ossl/hmac/sha1-96.rb +1 -1
  72. data/lib/net/ssh/transport/ossl/hmac/sha1.rb +1 -1
  73. data/lib/net/ssh/transport/ossl/key-factory.rb +1 -1
  74. data/lib/net/ssh/transport/ossl/services.rb +1 -1
  75. data/lib/net/ssh/transport/packet-stream.rb +1 -1
  76. data/lib/net/ssh/transport/services.rb +1 -1
  77. data/lib/net/ssh/transport/session.rb +1 -1
  78. data/lib/net/ssh/transport/version-negotiator.rb +1 -1
  79. data/lib/net/ssh/userauth/agent.rb +1 -1
  80. data/lib/net/ssh/userauth/constants.rb +1 -1
  81. data/lib/net/ssh/userauth/driver.rb +1 -1
  82. data/lib/net/ssh/userauth/methods/hostbased.rb +1 -1
  83. data/lib/net/ssh/userauth/methods/keyboard-interactive.rb +1 -1
  84. data/lib/net/ssh/userauth/methods/password.rb +1 -1
  85. data/lib/net/ssh/userauth/methods/publickey.rb +1 -1
  86. data/lib/net/ssh/userauth/methods/services.rb +1 -1
  87. data/lib/net/ssh/userauth/pageant.rb +1 -1
  88. data/lib/net/ssh/userauth/services.rb +1 -1
  89. data/lib/net/ssh/userauth/userkeys.rb +1 -1
  90. data/lib/net/ssh/util/buffer.rb +1 -1
  91. data/lib/net/ssh/util/openssl.rb +1 -1
  92. data/lib/net/ssh/util/prompter.rb +1 -1
  93. data/lib/net/ssh/version.rb +2 -2
  94. data/test/ALL-TESTS.rb +2 -5
  95. data/test/connection/tc_channel.rb +2 -2
  96. data/test/connection/tc_driver.rb +2 -2
  97. data/test/connection/tc_integration.rb +2 -2
  98. data/test/proxy/tc_http.rb +2 -2
  99. data/test/proxy/tc_socks4.rb +2 -2
  100. data/test/proxy/tc_socks5.rb +2 -2
  101. data/test/service/forward/tc_driver.rb +2 -2
  102. data/test/service/forward/tc_local_network_handler.rb +2 -2
  103. data/test/service/forward/tc_remote_network_handler.rb +2 -2
  104. data/test/service/process/tc_driver.rb +2 -2
  105. data/test/service/process/tc_integration.rb +2 -2
  106. data/test/service/process/tc_open.rb +2 -2
  107. data/test/service/process/tc_popen3.rb +2 -2
  108. data/test/tc_integration.rb +2 -2
  109. data/test/transport/compress/tc_none_compress.rb +2 -2
  110. data/test/transport/compress/tc_none_decompress.rb +2 -2
  111. data/test/transport/compress/tc_zlib_compress.rb +2 -2
  112. data/test/transport/compress/tc_zlib_decompress.rb +2 -2
  113. data/test/transport/kex/tc_dh.rb +12 -11
  114. data/test/transport/kex/tc_dh_gex.rb +3 -3
  115. data/test/transport/ossl/hmac/tc_hmac.rb +2 -2
  116. data/test/transport/ossl/hmac/tc_md5.rb +2 -2
  117. data/test/transport/ossl/hmac/tc_md5_96.rb +2 -2
  118. data/test/transport/ossl/hmac/tc_none.rb +2 -2
  119. data/test/transport/ossl/hmac/tc_sha1.rb +2 -2
  120. data/test/transport/ossl/hmac/tc_sha1_96.rb +2 -2
  121. data/test/transport/ossl/tc_buffer.rb +2 -2
  122. data/test/transport/ossl/tc_buffer_factory.rb +2 -2
  123. data/test/transport/ossl/tc_cipher_factory.rb +2 -2
  124. data/test/transport/ossl/tc_digest_factory.rb +2 -2
  125. data/test/transport/ossl/tc_hmac_factory.rb +2 -2
  126. data/test/transport/ossl/tc_key_factory.rb +2 -2
  127. data/test/transport/tc_algorithm_negotiator.rb +2 -2
  128. data/test/transport/tc_identity_cipher.rb +2 -2
  129. data/test/transport/tc_integration.rb +2 -2
  130. data/test/transport/tc_packet_stream.rb +2 -2
  131. data/test/transport/tc_session.rb +2 -2
  132. data/test/transport/tc_version_negotiator.rb +2 -2
  133. data/test/userauth/methods/tc_hostbased.rb +2 -2
  134. data/test/userauth/methods/tc_password.rb +2 -2
  135. data/test/userauth/methods/tc_publickey.rb +2 -2
  136. data/test/userauth/tc_agent.rb +2 -2
  137. data/test/userauth/tc_driver.rb +2 -2
  138. data/test/userauth/tc_integration.rb +2 -2
  139. data/test/userauth/tc_userkeys.rb +2 -2
  140. data/test/util/tc_buffer.rb +2 -2
  141. metadata +252 -249
@@ -1,4 +1,4 @@
1
- Copyright (c) 2004, Jamis Buck (jgb3@email.byu.edu)
1
+ Copyright (c) 2004, Jamis Buck (jamis@37signals.com)
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
@@ -1,4 +1,4 @@
1
- Net::SSH is copyrighted free software by Jamis Buck <jgb3@email.byu.edu>.
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.3</strong><br />
18
- Manual Last Updated: <strong>2005-11-09 17:06 UTC</strong>
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:jgb3@email.byu.edu">Jamis Buck</a>) in order to negotiate a more compatible license.</p>
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:jamis_buck@byu.edu">Jamis Buck</a>. Feel free to send him compliments, candy, money, praise, or new feature patches&#8212;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>
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&#8212;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.3</strong><br />
18
- Manual Last Updated: <strong>2005-11-09 17:06 UTC</strong>
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.3</strong><br />
18
- Manual Last Updated: <strong>2005-11-09 17:06 UTC</strong>
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.3</strong><br />
18
- Manual Last Updated: <strong>2005-11-09 17:06 UTC</strong>
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.3</strong><br />
18
- Manual Last Updated: <strong>2005-11-09 17:06 UTC</strong>
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.3</strong><br />
18
- Manual Last Updated: <strong>2005-11-09 17:06 UTC</strong>
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.3</strong><br />
18
- Manual Last Updated: <strong>2005-11-09 17:06 UTC</strong>
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.3</strong><br />
18
- Manual Last Updated: <strong>2005-11-09 17:06 UTC</strong>
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>
@@ -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:jgb3@email.byu.edu) in order to negotiate a more compatible license.
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
 
@@ -1 +1 @@
1
- Net::SSH was written by "Jamis Buck":mailto:jamis_buck@byu.edu. 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.
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.
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # =============================================================================
3
- # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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 (jamis_buck@byu.edu)
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