$cat /proc/sys/net/ipv4/tcp_ecn 2 $ The tcp_ecn variable turns on Explicit Congestion Notification in TCP connections. This is used to automatically tell the host when there are congestions in a route to a specific host or a network. This can be used to throttle the transmitters to send packets in a slower rate over that specific …
Daily Archives: May 24, 2010
grep –color
$cat textdomain.c #include #include main() { char *textd; textd=textdomain(“iam happy”); printf(“\n %s \n”,textd); } $grep –color=auto hello textdomain.c $grep –color=auto happy textdomain.c textd=textdomain(“iam happy”); $