mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-25 14:54:45 +02:00
- markus@cvs.openbsd.org 2003/10/28 09:08:06
[misc.c] error->debug for getsockopt+TCP_NODELAY; several requests
This commit is contained in:
parent
56afe145e0
commit
6db8f936ae
@ -13,6 +13,9 @@
|
|||||||
[sshconnect2.c]
|
[sshconnect2.c]
|
||||||
rename 'supported' static var in userauth_gssapi() to 'gss_supported'
|
rename 'supported' static var in userauth_gssapi() to 'gss_supported'
|
||||||
to avoid shadowing the global version. markus@ ok
|
to avoid shadowing the global version. markus@ ok
|
||||||
|
- markus@cvs.openbsd.org 2003/10/28 09:08:06
|
||||||
|
[misc.c]
|
||||||
|
error->debug for getsockopt+TCP_NODELAY; several requests
|
||||||
|
|
||||||
20031021
|
20031021
|
||||||
- (dtucker) [INSTALL] Some system crypt() functions support MD5 passwords
|
- (dtucker) [INSTALL] Some system crypt() functions support MD5 passwords
|
||||||
@ -1387,4 +1390,4 @@
|
|||||||
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
||||||
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3089 2003/11/03 09:06:14 dtucker Exp $
|
$Id: ChangeLog,v 1.3090 2003/11/03 09:07:14 dtucker Exp $
|
||||||
|
4
misc.c
4
misc.c
@ -23,7 +23,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: misc.c,v 1.22 2003/09/18 08:49:45 markus Exp $");
|
RCSID("$OpenBSD: misc.c,v 1.23 2003/10/28 09:08:06 markus Exp $");
|
||||||
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
@ -97,7 +97,7 @@ set_nodelay(int fd)
|
|||||||
|
|
||||||
optlen = sizeof opt;
|
optlen = sizeof opt;
|
||||||
if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
|
if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
|
||||||
error("getsockopt TCP_NODELAY: %.100s", strerror(errno));
|
debug("getsockopt TCP_NODELAY: %.100s", strerror(errno));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (opt == 1) {
|
if (opt == 1) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user