search for: oxauthloc

Displaying 3 results from an estimated 3 matches for "oxauthloc".

2015 Mar 19
0
[Bug 1604] SCTP support for openssh
...CC| |Bert.Wesarg at googlemail.com --- Comment #11 from Bert Wesarg <Bert.Wesarg at googlemail.com> --- --- a/readconf.c +++ b/readconf.c @@ -130,6 +130,9 @@ typedef enum { oPasswordAuthentication, oRSAAuthentication, oChallengeResponseAuthentication, oXAuthLocation, oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward, +#ifdef SCTP + oTransport, +#endif oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand, oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts, oBatchMode, oCheckHostIP, oStrictHos...
2015 Jul 29
2
[PATCH] ssh: Add option to present certificates on command line
...nged, 375 insertions(+), 5 deletions(-) create mode 100644 regress/ssh-cert.sh diff --git a/readconf.c b/readconf.c index f1c860b..b34213d 100644 --- a/readconf.c +++ b/readconf.c @@ -135,6 +135,7 @@ typedef enum { oPasswordAuthentication, oRSAAuthentication, oChallengeResponseAuthentication, oXAuthLocation, oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward, + oCertificateFile, oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand, oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts, oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression, @@...
2004 Aug 26
2
OpenSSH PATCH: OpenCommand and CloseCommand
.... */ int escape_char; /* Escape character; -2 = none */ Index: readconf.c --- openssh-3.8p1.orig/readconf.c (.../.transvn:beginning) (revision 25) +++ openssh-3.8p1/readconf.c (revision 25) @@ -93,7 +93,8 @@ oPasswordAuthentication, oRSAAuthentication, oChallengeResponseAuthentication, oXAuthLocation, oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward, - oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand, + oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, + oOpenCommand, oCloseCommand, oProxyCommand, oGlobalKnownHostsFile, oUserKnownHostsFile, o...