View | Details | Raw Unified | Return to bug 2986
Collapse All | Expand All

(-)a/defines.h (+1 lines)
Lines 85-90 enum Link Here
85
#endif /* IPTOS_DSCP_AF11 */
85
#endif /* IPTOS_DSCP_AF11 */
86
#ifndef IPTOS_DSCP_CS0
86
#ifndef IPTOS_DSCP_CS0
87
# define	IPTOS_DSCP_CS0		0x00
87
# define	IPTOS_DSCP_CS0		0x00
88
# define IPTOS_LE          0x01
88
# define	IPTOS_DSCP_CS1		0x20
89
# define	IPTOS_DSCP_CS1		0x20
89
# define	IPTOS_DSCP_CS2		0x40
90
# define	IPTOS_DSCP_CS2		0x40
90
# define	IPTOS_DSCP_CS3		0x60
91
# define	IPTOS_DSCP_CS3		0x60
(-)a/misc.c (+1 lines)
Lines 1503-1508 static const struct { Link Here
1503
	{ "af42", IPTOS_DSCP_AF42 },
1503
	{ "af42", IPTOS_DSCP_AF42 },
1504
	{ "af43", IPTOS_DSCP_AF43 },
1504
	{ "af43", IPTOS_DSCP_AF43 },
1505
	{ "cs0", IPTOS_DSCP_CS0 },
1505
	{ "cs0", IPTOS_DSCP_CS0 },
1506
	{ "le", IPTOS_LE },
1506
	{ "cs1", IPTOS_DSCP_CS1 },
1507
	{ "cs1", IPTOS_DSCP_CS1 },
1507
	{ "cs2", IPTOS_DSCP_CS2 },
1508
	{ "cs2", IPTOS_DSCP_CS2 },
1508
	{ "cs3", IPTOS_DSCP_CS3 },
1509
	{ "cs3", IPTOS_DSCP_CS3 },
(-)a/regress/netcat.c (-1 / +1 lines)
Lines 1220-1225 map_tos(char *s, int *val) Link Here
1220
		{ "af43",		IPTOS_DSCP_AF43 },
1220
		{ "af43",		IPTOS_DSCP_AF43 },
1221
		{ "critical",		IPTOS_PREC_CRITIC_ECP },
1221
		{ "critical",		IPTOS_PREC_CRITIC_ECP },
1222
		{ "cs0",		IPTOS_DSCP_CS0 },
1222
		{ "cs0",		IPTOS_DSCP_CS0 },
1223
		{ "le",			IPTOS_LE },
1223
		{ "cs1",		IPTOS_DSCP_CS1 },
1224
		{ "cs1",		IPTOS_DSCP_CS1 },
1224
		{ "cs2",		IPTOS_DSCP_CS2 },
1225
		{ "cs2",		IPTOS_DSCP_CS2 },
1225
		{ "cs3",		IPTOS_DSCP_CS3 },
1226
		{ "cs3",		IPTOS_DSCP_CS3 },
1226
- 

Return to bug 2986