Skip to content
This repository has been archived by the owner on Sep 12, 2020. It is now read-only.

Fix FSF address #8

Merged
merged 1 commit into from Feb 25, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions LICENSE
Expand Up @@ -2,7 +2,7 @@
Version 2.1, February 1999

Copyright (C) 1991, 1999 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

Expand Down Expand Up @@ -485,7 +485,7 @@ convey the exclusion of warranty; and each file should have at least the

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA

Also add information on how to contact you by electronic and paper mail.

Expand Down
2 changes: 1 addition & 1 deletion demos/demo.py
Expand Up @@ -16,7 +16,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.


import base64
Expand Down
2 changes: 1 addition & 1 deletion demos/demo_server.py
Expand Up @@ -16,7 +16,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

import base64
from binascii import hexlify
Expand Down
2 changes: 1 addition & 1 deletion demos/demo_sftp.py
Expand Up @@ -16,7 +16,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

# based on code provided by raymond mosteller (thanks!)

Expand Down
2 changes: 1 addition & 1 deletion demos/demo_simple.py
Expand Up @@ -16,7 +16,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.


import base64
Expand Down
2 changes: 1 addition & 1 deletion demos/forward.py
Expand Up @@ -16,7 +16,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Sample script showing how to do local port forwarding over ssh.
Expand Down
2 changes: 1 addition & 1 deletion demos/interactive.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.


import socket
Expand Down
2 changes: 1 addition & 1 deletion demos/rforward.py
Expand Up @@ -16,7 +16,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Sample script showing how to do remote port forwarding over ssh.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.


longdesc = '''
Expand Down
2 changes: 1 addition & 1 deletion setup_helper.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

# Note: Despite the copyright notice, this was submitted by John
# Arbash Meinel. Thanks John!
Expand Down
2 changes: 1 addition & 1 deletion ssh/__init__.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
I{'ssh'}
Expand Down
2 changes: 1 addition & 1 deletion ssh/agent.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
SSH Agent interface for Unix clients.
Expand Down
2 changes: 1 addition & 1 deletion ssh/auth_handler.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
L{AuthHandler}
Expand Down
2 changes: 1 addition & 1 deletion ssh/ber.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.


import util
Expand Down
2 changes: 1 addition & 1 deletion ssh/buffered_pipe.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Attempt to generalize the "feeder" part of a Channel: an object which can be
Expand Down
2 changes: 1 addition & 1 deletion ssh/channel.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Abstraction for an SSH2 channel.
Expand Down
2 changes: 1 addition & 1 deletion ssh/client.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
L{SSHClient}.
Expand Down
2 changes: 1 addition & 1 deletion ssh/common.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Common constants and global variables.
Expand Down
2 changes: 1 addition & 1 deletion ssh/compress.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Compression implementations for a Transport.
Expand Down
2 changes: 1 addition & 1 deletion ssh/config.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
L{SSHConfig}.
Expand Down
2 changes: 1 addition & 1 deletion ssh/dsskey.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
L{DSSKey}
Expand Down
2 changes: 1 addition & 1 deletion ssh/file.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
BufferedFile.
Expand Down
2 changes: 1 addition & 1 deletion ssh/hostkeys.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
L{HostKeys}
Expand Down
2 changes: 1 addition & 1 deletion ssh/kex_gex.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Variant on L{KexGroup1 <ssh.kex_group1.KexGroup1>} where the prime "p" and
Expand Down
2 changes: 1 addition & 1 deletion ssh/kex_group1.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Standard SSH key exchange ("kex" if you wanna sound cool). Diffie-Hellman of
Expand Down
2 changes: 1 addition & 1 deletion ssh/logging22.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Stub out logging on python < 2.3.
Expand Down
2 changes: 1 addition & 1 deletion ssh/message.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Implementation of an SSH2 "message".
Expand Down
2 changes: 1 addition & 1 deletion ssh/packet.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Packetizer.
Expand Down
2 changes: 1 addition & 1 deletion ssh/pipe.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Abstraction of a one-way pipe where the read end can be used in select().
Expand Down
2 changes: 1 addition & 1 deletion ssh/pkey.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Common API for all public keys.
Expand Down
2 changes: 1 addition & 1 deletion ssh/primes.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Utility functions for dealing with primes.
Expand Down
2 changes: 1 addition & 1 deletion ssh/resource.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Resource manager.
Expand Down
2 changes: 1 addition & 1 deletion ssh/rsakey.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
L{RSAKey}
Expand Down
2 changes: 1 addition & 1 deletion ssh/server.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
L{ServerInterface} is an interface to override for server support.
Expand Down
2 changes: 1 addition & 1 deletion ssh/sftp.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

import select
import socket
Expand Down
2 changes: 1 addition & 1 deletion ssh/sftp_attr.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

import stat
import time
Expand Down
2 changes: 1 addition & 1 deletion ssh/sftp_client.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Client-mode SFTP support.
Expand Down
2 changes: 1 addition & 1 deletion ssh/sftp_file.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
L{SFTPFile}
Expand Down
2 changes: 1 addition & 1 deletion ssh/sftp_handle.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Abstraction of an SFTP file handle (for server mode).
Expand Down
2 changes: 1 addition & 1 deletion ssh/sftp_server.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Server-mode SFTP support.
Expand Down
2 changes: 1 addition & 1 deletion ssh/sftp_si.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
L{SFTPServerInterface} is an interface to override for SFTP server support.
Expand Down
2 changes: 1 addition & 1 deletion ssh/ssh_exception.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
Exceptions defined by ssh.
Expand Down
2 changes: 1 addition & 1 deletion ssh/transport.py
Expand Up @@ -14,7 +14,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with 'ssh'; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
# 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA.

"""
L{Transport} handles the core SSH2 protocol.
Expand Down