File: constants.rb

package info (click to toggle)
libnet-ssh2-ruby 2.0.15-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 812 kB
  • ctags: 1,400
  • sloc: ruby: 8,839; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 779 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module Net; module SSH; module Connection

  # Definitions of constants that are specific to the connection layer of the
  # SSH protocol.
  module Constants

    #--
    # Connection protocol generic messages
    #++

    GLOBAL_REQUEST            = 80
    REQUEST_SUCCESS           = 81
    REQUEST_FAILURE           = 82

    #--
    # Channel related messages
    #++

    CHANNEL_OPEN              = 90
    CHANNEL_OPEN_CONFIRMATION = 91
    CHANNEL_OPEN_FAILURE      = 92
    CHANNEL_WINDOW_ADJUST     = 93
    CHANNEL_DATA              = 94
    CHANNEL_EXTENDED_DATA     = 95
    CHANNEL_EOF               = 96
    CHANNEL_CLOSE             = 97
    CHANNEL_REQUEST           = 98
    CHANNEL_SUCCESS           = 99
    CHANNEL_FAILURE           = 100

  end

end; end end