- djm@cvs.openbsd.org 2012/06/01 00:49:35

[PROTOCOL.mux]
     correct types of port numbers (integers, not strings); bz#2004 from
     bert.wesarg AT googlemail.com
This commit is contained in:
Damien Miller 2012-06-20 21:51:29 +10:00
parent 3bde12aeef
commit 7f12157c0a
2 changed files with 9 additions and 5 deletions

View File

@ -20,6 +20,10 @@
[dns.c dns.h key.c key.h ssh-keygen.c]
add support for RFC6594 SSHFP DNS records for ECDSA key types.
patch from bugzilla-m67 AT nulld.me in bz#1978; ok + tweak markus@
- djm@cvs.openbsd.org 2012/06/01 00:49:35
[PROTOCOL.mux]
correct types of port numbers (integers, not strings); bz#2004 from
bert.wesarg AT googlemail.com
20120519
- (dtucker) [configure.ac] bz#2010: fix non-portable shell construct. Patch

View File

@ -110,9 +110,9 @@ A client may request the master to establish a port forward:
uint32 request id
uint32 forwarding type
string listen host
string listen port
uint32 listen port
string connect host
string connect port
uint32 connect port
forwarding type may be MUX_FWD_LOCAL, MUX_FWD_REMOTE, MUX_FWD_DYNAMIC.
@ -135,9 +135,9 @@ A client may request the master to close a port forward:
uint32 request id
uint32 forwarding type
string listen host
string listen port
uint32 listen port
string connect host
string connect port
uint32 connect port
A server may reply with a MUX_S_OK, a MUX_S_PERMISSION_DENIED or a
MUX_S_FAILURE.
@ -219,4 +219,4 @@ XXX inject packet (what about replies)
XXX server->client error/warning notifications
XXX send signals via mux
$OpenBSD: PROTOCOL.mux,v 1.8 2011/09/09 00:44:07 djm Exp $
$OpenBSD: PROTOCOL.mux,v 1.9 2012/06/01 00:49:35 djm Exp $