da459f7712
git-svn-id: file:///home/svn/framework3/trunk@10574 4d416f70-5f16-0410-b530-b9f4589650da
36 lines
670 B
Ruby
36 lines
670 B
Ruby
module Net; module SSH; module Transport
|
|
module Constants
|
|
|
|
#--
|
|
# Transport layer generic messages
|
|
#++
|
|
|
|
DISCONNECT = 1
|
|
IGNORE = 2
|
|
UNIMPLEMENTED = 3
|
|
DEBUG = 4
|
|
SERVICE_REQUEST = 5
|
|
SERVICE_ACCEPT = 6
|
|
|
|
#--
|
|
# Algorithm negotiation messages
|
|
#++
|
|
|
|
KEXINIT = 20
|
|
NEWKEYS = 21
|
|
|
|
#--
|
|
# Key exchange method specific messages
|
|
#++
|
|
|
|
KEXDH_INIT = 30
|
|
KEXDH_REPLY = 31
|
|
|
|
#--
|
|
# Compatibility flags
|
|
#++
|
|
|
|
COMPAT_OLD_DHGEX = 0x1
|
|
|
|
end
|
|
end; end; end |