diff --git a/gateway/v1/api/files/README_rdoc.html b/gateway/v1/api/files/README_rdoc.html index be69a24..c70bd91 100644 --- a/gateway/v1/api/files/README_rdoc.html +++ b/gateway/v1/api/files/README_rdoc.html @@ -72,7 +72,7 @@

README.rdoc

Net::SSH::Gateway

@@ -203,4 +203,4 @@

LICENSE:

- \ No newline at end of file + diff --git a/index.html b/index.html index 743ed2c..7407c52 100644 --- a/index.html +++ b/index.html @@ -12,8 +12,8 @@

Net::SSH

Net::SFTP

@@ -25,8 +25,8 @@

Net::SFTP

Net::SCP

@@ -38,7 +38,7 @@

Net::SCP

Net::SSH::Gateway

@@ -48,7 +48,7 @@

Net::SSH::Gateway

Net::SSH::Multi

@@ -59,7 +59,7 @@

Net::SSH::Multi

diff --git a/multi/v1/api/files/README_rdoc.html b/multi/v1/api/files/README_rdoc.html index 4cd33f3..270659f 100644 --- a/multi/v1/api/files/README_rdoc.html +++ b/multi/v1/api/files/README_rdoc.html @@ -72,7 +72,7 @@

README.rdoc

Net::SSH::Multi

@@ -232,4 +232,4 @@

LICENSE:

- \ No newline at end of file + diff --git a/scp/v1/api/files/README_rdoc.html b/scp/v1/api/files/README_rdoc.html index 5028419..1c5e630 100644 --- a/scp/v1/api/files/README_rdoc.html +++ b/scp/v1/api/files/README_rdoc.html @@ -71,7 +71,7 @@

README.rdoc

Net::SCP

@@ -239,4 +239,4 @@

LICENSE:

- \ No newline at end of file + diff --git a/sftp/v2/api/files/README_rdoc.html b/sftp/v2/api/files/README_rdoc.html index 14873b8..95f7b65 100644 --- a/sftp/v2/api/files/README_rdoc.html +++ b/sftp/v2/api/files/README_rdoc.html @@ -71,7 +71,7 @@

README.rdoc

Net::SFTP

@@ -249,4 +249,4 @@

LICENSE:

- \ No newline at end of file + diff --git a/ssh/index.html b/ssh/index.html index df86a76..856ee3e 100644 --- a/ssh/index.html +++ b/ssh/index.html @@ -5,7 +5,7 @@ diff --git a/ssh/v1/chapter-1.html b/ssh/v1/chapter-1.html index 807b537..b1ae99e 100644 --- a/ssh/v1/chapter-1.html +++ b/ssh/v1/chapter-1.html @@ -170,7 +170,7 @@

Chapters

Other Documentation

diff --git a/ssh/v1/chapter-2.html b/ssh/v1/chapter-2.html index f5bf868..cef82cc 100644 --- a/ssh/v1/chapter-2.html +++ b/ssh/v1/chapter-2.html @@ -169,7 +169,7 @@

Chapters

Other Documentation

diff --git a/ssh/v1/chapter-3.html b/ssh/v1/chapter-3.html index 140b48e..086874f 100644 --- a/ssh/v1/chapter-3.html +++ b/ssh/v1/chapter-3.html @@ -169,7 +169,7 @@

Chapters

Other Documentation

diff --git a/ssh/v1/chapter-4.html b/ssh/v1/chapter-4.html index 098723f..a72dc26 100644 --- a/ssh/v1/chapter-4.html +++ b/ssh/v1/chapter-4.html @@ -169,7 +169,7 @@

Chapters

Other Documentation

diff --git a/ssh/v1/chapter-5.html b/ssh/v1/chapter-5.html index 6e87f01..05d1028 100644 --- a/ssh/v1/chapter-5.html +++ b/ssh/v1/chapter-5.html @@ -169,7 +169,7 @@

Chapters

Other Documentation

diff --git a/ssh/v1/chapter-6.html b/ssh/v1/chapter-6.html index 9e4e627..68abf26 100644 --- a/ssh/v1/chapter-6.html +++ b/ssh/v1/chapter-6.html @@ -169,7 +169,7 @@

Chapters

Other Documentation

diff --git a/ssh/v1/chapter-7.html b/ssh/v1/chapter-7.html index 3fd66c6..e03db70 100644 --- a/ssh/v1/chapter-7.html +++ b/ssh/v1/chapter-7.html @@ -169,7 +169,7 @@

Chapters

Other Documentation

diff --git a/ssh/v1/chapter-8.html b/ssh/v1/chapter-8.html index f5d28b5..a12ec9a 100644 --- a/ssh/v1/chapter-8.html +++ b/ssh/v1/chapter-8.html @@ -209,7 +209,7 @@

Chapters

API Reference

@@ -246,7 +246,7 @@

Purpose

Location and Construction

-

The Net::SSH transport layer is in the Net::SSH::Transport module, and is composed of several classes. Some of the most significant components of the transport layer are:

+

The Net::SSH transport layer is in the Net::SSH::Transport module, and is composed of several classes. Some of the most significant components of the transport layer are:

@@ -255,17 +255,17 @@

Location and Construction

- + - + - + @@ -277,7 +277,7 @@

Flow

The connection to the server is either made using a TCPSocket, or if a proxy is given, the proxy is used to connect.

-

After connecting to the server, the transport session then instantiates an IncomingPacketStream and an OutgoingPacketStream these two classes are used to perform all SSH-mandated operations on packets as they are received or sent.

+

After connecting to the server, the transport session then instantiates an IncomingPacketStream and an OutgoingPacketStream these two classes are used to perform all SSH-mandated operations on packets as they are received or sent.

Once the packet streams are set up, version negoation takes place. Net::SSH reads the version of the server, and then tells the server what its own version is.

@@ -309,7 +309,7 @@

Purpose

Location and Construction

-

The authentication layer exists in the Net::SSH::Service module, and consists (primarily) of three classes:

+

The authentication layer exists in the Net::SSH::Service module, and consists (primarily) of three classes:

Description
Session Session net/ssh/transport/session This represents a single session with a server. An instance of this object is the fundamental means by which all other pieces of the Net::SSH framework communicate with the remote server.
WriterBuffer WriterBuffer net/ssh/transport/buffer This is a class that makes it easier to encode data in SSH-specific formats. Various other layers of the Net::SSH framework employ the WriterBuffer class to help format packets to send to the server.
ReaderBuffer ReaderBuffer net/ssh/transport/buffer This is a class that makes it easier to decode data in SSH-specific formats. This is useful for taking apart packets received from the server.
@@ -318,17 +318,17 @@

Location and Construction

- + - + - + @@ -358,7 +358,7 @@

Purpose

Location and Construction

-

The connection layer exists in the Net::SSH::Service module, and consists of only two classes:

+

The connection layer exists in the Net::SSH::Service module, and consists of only two classes:

Description
UserAuth UserAuth net/ssh/service/userauth The UserAuth class is the core of the authentication layer. It attempts each requested authentication method in turn, until one succeeds. To help, it uses the UserKeyManager class.
UserKeyManager UserKeyManager net/ssh/service/userkeys The UserKeyManager keeps track of all knows identities (public keys) of the current user. It abstracts the keys away from the rest of the application, so that other classes do not have to deal directly with the private keys. It also interacts with the SSH agent, if one is active, via the Agent class.
Agent Agent net/ssh/service/agent The Agent interfaces with the active SSH agent, if one is running. It provides an interface for querying all of the identities (public keys) that the agent knows of, and for performing operations with those identities.
@@ -367,12 +367,12 @@

Location and Construction

- + - + @@ -398,7 +398,7 @@

-

The session layer is not a formal layer defined in the SSH specification. Instead, it is an abstraction provided by Net::SSH for accessing the connection layer. This layer is defined in the Net::SSH::Session class.

+

The session layer is not a formal layer defined in the SSH specification. Instead, it is an abstraction provided by Net::SSH for accessing the connection layer. This layer is defined in the Net::SSH::Session class.

In truth, the Net::SSH::Session class is little more than a wrapper for the connection object, although it also instantiates the transport layer and invokes the authentication layer.

@@ -420,7 +420,7 @@

Purpose

Location and Construction

-

The port forwarding layer is, like all other services, defined in the Net::SSH::Service module, and consists of really only one significant class:

+

The port forwarding layer is, like all other services, defined in the Net::SSH::Service module, and consists of really only one significant class:

Description
Connection Connection net/ssh/service/connection The Connection class manages the lifecycle of the channels. When the main_loop method is invoked, it is really the Connection’s process_connection method that does all the work.
Channel Channel net/ssh/service/channel The Channel class represents a single bidirectional communication channel across a connection. It provides a rich event-driven interface for handling the various events that occur in a channel. It also provides ways for sending data across a channel.
@@ -429,7 +429,7 @@

Location and Construction

- + @@ -455,7 +455,7 @@

Purpose

Location and Construction

-

The SFTP subsystem is defined in the Net::SSH::SFTP module, and consists of two primary classes:

+

The SFTP subsystem is defined in the Net::SSH::SFTP module, and consists of two primary classes:

Description
PortForwardManager PortForwardManager net/ssh/service/forward The PortForwardManager manages all forwarded ports and connections. It uses a system of handler objects (each encapsulating a set of callbacks) to manage the operation of each forwarded connection.
@@ -464,12 +464,12 @@

Location and Construction

- + - + diff --git a/ssh/v1/chapter-9.html b/ssh/v1/chapter-9.html index 3ad66b9..5f9f3dd 100644 --- a/ssh/v1/chapter-9.html +++ b/ssh/v1/chapter-9.html @@ -209,7 +209,7 @@

Chapters

API Reference

diff --git a/ssh/v1/index.html b/ssh/v1/index.html index 7187c67..bc9608c 100755 --- a/ssh/v1/index.html +++ b/ssh/v1/index.html @@ -169,7 +169,7 @@

Chapters

Other Documentation

@@ -201,9 +201,9 @@

Tutorials

Project Page: https://github.com/net-ssh/
- User Manual: http://net-ssh.github.com
+ User Manual: https://net-ssh.github.io
- API Documentation: http://net-ssh.github.com/api
+ API Documentation: https://net-ssh.github.io/api

diff --git a/ssh/v2/api/files/README_rdoc.html b/ssh/v2/api/files/README_rdoc.html index bf1da86..8cbf93d 100644 --- a/ssh/v2/api/files/README_rdoc.html +++ b/ssh/v2/api/files/README_rdoc.html @@ -40,7 +40,7 @@

Net::SSH

Description
Session Session net/ssh/sftp/session The Session class represents a single SFTP channel on a connection. All operations are asynchronous, which is inconvenient but powerful.
Simple Simple net/ssh/sftp/simple The Simple class encapsulates both the Net::SSH::Session and Net::SSH::SFTP::Session. It also provides a synchronous interface, making it ideal for simple interactive SFTP sessions.