Displaying 3 results from an estimated 3 matches for "iptos_dscp_af11".
2011 May 03
1
IPTOS constants
...p_tos)
*/
+#include <netinet/ip.h>
#ifndef IPTOS_LOWDELAY
# define IPTOS_LOWDELAY 0x10
# define IPTOS_THROUGHPUT 0x08
@@ -57,7 +58,6 @@
* Definitions for DiffServ Codepoints as per RFC2474
*/
#include <netinet/in_systm.h>
-#include <netinet/ip.h>
#ifndef IPTOS_DSCP_AF11
# define IPTOS_DSCP_AF11 0x28
# define IPTOS_DSCP_AF12 0x30
These include directives should really be moved to includes.h - in fact,
<netinet/in_systm.h> is already there.
DES
--
Dag-Erling Sm?rgrav - des at des.no
2011 Feb 09
6
[Bug 1856] New: Wrong QoS naming and obsolete defaults
...options->ip_qos_bulk = IPTOS_THROUGHPUT;
in servconf.c and readconf.c be replaced by:
if (options->ip_qos_interactive == -1)
options->ip_qos_interactive = IPTOS_DSCP_AF21;
if (options->ip_qos_bulk == -1)
options->ip_qos_bulk = IPTOS_DSCP_AF11;
as per the definitions in RFC-4594 sections 4.7 ("Low-Latency Data
Service Class") and 4.8 ("High-Throughput Data Service Class"),
respectively... and the documentation of the default values be updated
accordingly.
--
Configure bugmail: https://bugzilla.mindrot.org/userpref...
2011 Dec 18
10
[Bug 1964] New: QoS/DSCP names false translated to ToS hex value
https://bugzilla.mindrot.org/show_bug.cgi?id=1964
Bug #: 1964
Summary: QoS/DSCP names false translated to ToS hex value
Classification: Unclassified
Product: Portable OpenSSH
Version: 5.9p1
Platform: amd64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ssh