mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-30 17:25:09 +02:00
- stevesk@cvs.openbsd.org 2011/03/29 18:54:17
[misc.c misc.h servconf.c] print ipqos friendly string for sshd -T; ok markus # sshd -Tf sshd_config|grep ipqos ipqos lowdelay throughput
This commit is contained in:
parent
044f4a6cc3
commit
9147586599
@ -38,6 +38,11 @@
|
|||||||
- stevesk@cvs.openbsd.org 2011/03/24 22:14:54
|
- stevesk@cvs.openbsd.org 2011/03/24 22:14:54
|
||||||
[ssh-keygen.c]
|
[ssh-keygen.c]
|
||||||
use strcasecmp() for "clear" cert permission option also; ok djm
|
use strcasecmp() for "clear" cert permission option also; ok djm
|
||||||
|
- stevesk@cvs.openbsd.org 2011/03/29 18:54:17
|
||||||
|
[misc.c misc.h servconf.c]
|
||||||
|
print ipqos friendly string for sshd -T; ok markus
|
||||||
|
# sshd -Tf sshd_config|grep ipqos
|
||||||
|
ipqos lowdelay throughput
|
||||||
|
|
||||||
20110221
|
20110221
|
||||||
- (dtucker) [contrib/cygwin/ssh-host-config] From Corinna: revamp of the
|
- (dtucker) [contrib/cygwin/ssh-host-config] From Corinna: revamp of the
|
||||||
|
15
misc.c
15
misc.c
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: misc.c,v 1.84 2010/11/21 01:01:13 djm Exp $ */
|
/* $OpenBSD: misc.c,v 1.85 2011/03/29 18:54:17 stevesk Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
||||||
* Copyright (c) 2005,2006 Damien Miller. All rights reserved.
|
* Copyright (c) 2005,2006 Damien Miller. All rights reserved.
|
||||||
@ -985,6 +985,19 @@ parse_ipqos(const char *cp)
|
|||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *
|
||||||
|
iptos2str(int iptos)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
static char iptos_str[sizeof "0xff"];
|
||||||
|
|
||||||
|
for (i = 0; ipqos[i].name != NULL; i++) {
|
||||||
|
if (ipqos[i].value == iptos)
|
||||||
|
return ipqos[i].name;
|
||||||
|
}
|
||||||
|
snprintf(iptos_str, sizeof iptos_str, "0x%02x", iptos);
|
||||||
|
return iptos_str;
|
||||||
|
}
|
||||||
void
|
void
|
||||||
sock_set_v6only(int s)
|
sock_set_v6only(int s)
|
||||||
{
|
{
|
||||||
|
3
misc.h
3
misc.h
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: misc.h,v 1.47 2010/11/21 01:01:13 djm Exp $ */
|
/* $OpenBSD: misc.h,v 1.48 2011/03/29 18:54:17 stevesk Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
@ -89,6 +89,7 @@ void bandwidth_limit_init(struct bwlimit *, u_int64_t, size_t);
|
|||||||
void bandwidth_limit(struct bwlimit *, size_t);
|
void bandwidth_limit(struct bwlimit *, size_t);
|
||||||
|
|
||||||
int parse_ipqos(const char *);
|
int parse_ipqos(const char *);
|
||||||
|
const char *iptos2str(int);
|
||||||
void mktemp_proto(char *, size_t);
|
void mktemp_proto(char *, size_t);
|
||||||
|
|
||||||
/* readpass.c */
|
/* readpass.c */
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: servconf.c,v 1.213 2010/11/13 23:27:50 djm Exp $ */
|
/* $OpenBSD: servconf.c,v 1.214 2011/03/29 18:54:17 stevesk Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
* All rights reserved
|
* All rights reserved
|
||||||
@ -1775,7 +1775,8 @@ dump_config(ServerOptions *o)
|
|||||||
}
|
}
|
||||||
dump_cfg_string(sPermitTunnel, s);
|
dump_cfg_string(sPermitTunnel, s);
|
||||||
|
|
||||||
printf("ipqos 0x%02x 0x%02x\n", o->ip_qos_interactive, o->ip_qos_bulk);
|
printf("ipqos %s ", iptos2str(o->ip_qos_interactive));
|
||||||
|
printf("%s\n", iptos2str(o->ip_qos_bulk));
|
||||||
|
|
||||||
channel_print_adm_permitted_opens();
|
channel_print_adm_permitted_opens();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user