Sha256: 2fe4323ff5afa982475bcdcbade31563b59c8f370885a4d9a35ed57e931afb97

Contents?: true

Size: 1.4 KB

Versions: 5

Compression:

Stored size: 1.4 KB

Contents

#--
# =============================================================================
# Copyright (c) 2007, Chris Andrews (chris@nodnol.org),
#   Jamis Buck (jgb3@email.byu.edu)
# All rights reserved.
#
# This source file is distributed as part of the Net::SSH Secure Shell Client
# library for Ruby. This file (and the library as a whole) may be used only as
# allowed by either the BSD license, or the Ruby license (or, by association
# with the Ruby license, the GPL). See the "doc" subdirectory of the Net::SSH
# distribution for the texts of these licenses.
# -----------------------------------------------------------------------------
# net-ssh website : http://net-ssh.rubyforge.org
# project website: http://rubyforge.org/projects/net-ssh
# =============================================================================
#++

module Net
  module SSH
    module Service
      module AgentForward

        def register_services( container )

          container.namespace_define :agentforward do |ns|
            ns.driver :model => :singleton_deferred do |c,p|
              require 'net/ssh/service/agentforward/driver'
              Driver.new( c[:connection][:driver],
                          c[:transport][:buffers],
                          c[:log_for, p],
                          c[:userauth].agent)
            end
          end

        end
        module_function :register_services

      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
net-ssh-1.1.0 lib/net/ssh/service/agentforward/services.rb
net-ssh-1.1.1 lib/net/ssh/service/agentforward/services.rb
net-ssh-1.1.2 lib/net/ssh/service/agentforward/services.rb
net-ssh-1.1.3 lib/net/ssh/service/agentforward/services.rb
net-ssh-1.1.4 lib/net/ssh/service/agentforward/services.rb