I'm pretty sure this isn't what you want! % grep 0x02 /usr/include/netinet/ip.h #define IPTOS_ECN_ECT0 0x02 #define IPTOS_LOWCOST 0x02 %
Read the comments in /usr/include/netinet/ip.h and consider that the original RFC-791 markings were retired 14 years ago. Sending IPTOS_LOWCOST will have some *very* unfortunate effects if you go through an ECN-aware router! -Philip On 1/2/12 2:27 PM, [email protected] wrote: > Author: obsy > Date: 2012-01-02 22:27:32 +0100 (Mon, 02 Jan 2012) > New Revision: 29640 > > Modified: > packages/net/transmission/files/transmission.config > Log: > [package] transmission: oops, missing value for peer_socket_tos. > > Modified: packages/net/transmission/files/transmission.config > =================================================================== > --- packages/net/transmission/files/transmission.config 2012-01-02 > 20:03:13 UTC (rev 29639) > +++ packages/net/transmission/files/transmission.config 2012-01-02 > 21:27:32 UTC (rev 29640) > @@ -34,7 +34,7 @@ > option peer_port_random_high 65535 > option peer_port_random_low 49152 > option peer_port_random_on_start false > - option peer_socket_tos 0 > + option peer_socket_tos 'lowcost' > option pex_enabled true > option port_forwarding_enabled true > option preallocation 1 > _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
