diff options
author | Darren Tucker <dtucker@zip.com.au> | 2010-01-08 18:54:17 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2010-01-08 18:54:17 +1100 |
commit | f2705c8b7d0b6a9cc33c244bdf041f2a1087e08a (patch) | |
tree | eadf0742a6466316553263f6ebbe64a5296ecaaf | |
parent | b8c884a0ba4050e4267be786414127c0f09d5544 (diff) |
- djm@cvs.openbsd.org 2009/12/20 23:20:40
[PROTOCOL]
fix an incorrect magic number and typo in PROTOCOL; bz#1688
report and fix from ueno AT unixuser.org
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | PROTOCOL | 12 |
2 files changed, 10 insertions, 6 deletions
@@ -119,6 +119,10 @@ | |||
119 | filenames that start with a '-'. | 119 | filenames that start with a '-'. |
120 | Based on a diff by halex@ | 120 | Based on a diff by halex@ |
121 | ok halex@ djm@ deraadt@ | 121 | ok halex@ djm@ deraadt@ |
122 | - djm@cvs.openbsd.org 2009/12/20 23:20:40 | ||
123 | [PROTOCOL] | ||
124 | fix an incorrect magic number and typo in PROTOCOL; bz#1688 | ||
125 | report and fix from ueno AT unixuser.org | ||
122 | 126 | ||
123 | 20091226 | 127 | 20091226 |
124 | - (tim) [contrib/cygwin/Makefile] Install ssh-copy-id and ssh-copy-id.1 | 128 | - (tim) [contrib/cygwin/Makefile] Install ssh-copy-id and ssh-copy-id.1 |
@@ -121,10 +121,10 @@ layer 2 frames or layer 3 packets. It may take one of the following values: | |||
121 | SSH_TUNMODE_ETHERNET 2 /* layer 2 frames */ | 121 | SSH_TUNMODE_ETHERNET 2 /* layer 2 frames */ |
122 | 122 | ||
123 | The "tunnel unit number" specifies the remote interface number, or may | 123 | The "tunnel unit number" specifies the remote interface number, or may |
124 | be zero to allow the server to automatically chose an interface. A server | 124 | be 0x7fffffff to allow the server to automatically chose an interface. A |
125 | that is not willing to open a client-specified unit should refuse the | 125 | server that is not willing to open a client-specified unit should refuse |
126 | request with a SSH_MSG_CHANNEL_OPEN_FAILURE error. On successful open, | 126 | the request with a SSH_MSG_CHANNEL_OPEN_FAILURE error. On successful |
127 | the server should reply with SSH_MSG_CHANNEL_OPEN_SUCCESS. | 127 | open, the server should reply with SSH_MSG_CHANNEL_OPEN_SUCCESS. |
128 | 128 | ||
129 | Once established the client and server may exchange packet or frames | 129 | Once established the client and server may exchange packet or frames |
130 | over the tunnel channel by encapsulating them in SSH protocol strings | 130 | over the tunnel channel by encapsulating them in SSH protocol strings |
@@ -151,7 +151,7 @@ It may be one of: | |||
151 | The "packet data" field consists of the IPv4/IPv6 datagram itself | 151 | The "packet data" field consists of the IPv4/IPv6 datagram itself |
152 | without any link layer header. | 152 | without any link layer header. |
153 | 153 | ||
154 | The contents of the "data" field for layer 3 packets is: | 154 | The contents of the "data" field for layer 2 packets is: |
155 | 155 | ||
156 | uint32 packet length | 156 | uint32 packet length |
157 | byte[packet length] frame | 157 | byte[packet length] frame |
@@ -251,4 +251,4 @@ The values of the f_flag bitmask are as follows: | |||
251 | Both the "statvfs@openssh.com" and "fstatvfs@openssh.com" extensions are | 251 | Both the "statvfs@openssh.com" and "fstatvfs@openssh.com" extensions are |
252 | advertised in the SSH_FXP_VERSION hello with version "2". | 252 | advertised in the SSH_FXP_VERSION hello with version "2". |
253 | 253 | ||
254 | $OpenBSD: PROTOCOL,v 1.12 2009/02/14 06:35:49 djm Exp $ | 254 | $OpenBSD: PROTOCOL,v 1.13 2009/12/20 23:20:40 djm Exp $ |