## Set Type of services fields on some packages from the server.
## These values are based on RFC 1060/1349.
## Note that ssh automatically sets the TOS value.

## The syntax is:	
## TOS_FOO="<TOS type> <protocol> [ any | port[,port]* | ICMP type specifier ]"
## Where:
##   TOS_type is: Minimize-Delay|Maximize-Throughput|
##                Maximize-Reliability|Minimize-Cost|
##                Normal-Service
##   protocol is: Any protocol specified in /etc/protocols, 
##                or a protocol number  
##   port specification is either: 
##		  - any: matching any packet with the specified protocol.
##                - A list of ports, if TCP or UDP is specified.
##                - An ICMP type or number, if the protocol is ICMP.


TOS_MINIMIZE_DELAY_TCP="Minimize-Delay tcp ftp,telnet"
TOS_MAXIMIZE_THROUGHPUT_TCP="Maximize-Throughput tcp ftp-data,smtp,imap,imaps,pop3,pop3s,cvspserver,rsync"
TOS_MAXIMIZE_RELIABILITY_TCP="Maximize-Reliability tcp"
TOS_MINIMIZE_COST_TCP="Minimize-Cost tcp nntp"
TOS_NORMAL_SERVICE_TCP="Normal-Service tcp www,https"

TOS_MINIMIZE_DELAY_UDP="Minimize-Delay udp domain,ntp,tftp"
TOS_MAXIMIZE_THROUGHPUT_UDP="Maximize-Throughput udp"
TOS_MAXIMIZE_RELIABILITY_UDP="Maximize-Reliability udp"
TOS_MINIMIZE_COST_UDP="Minimize-Cost udp snmp"
TOS_NORMAL_SERVICE_UDP="Normal-Service udp bootps,bootpc"

TOS_MAXIMIZE_RELIABILITY_IGMP="Maximize-Reliability igmp any"
TOS_NORMAL_SERVICE_EGP="Normal-Service egp any"
