Skip to content

Commit

Permalink
Remove warning for IP_TOS failure
Browse files Browse the repository at this point in the history
  • Loading branch information
keithw committed Jun 12, 2012
1 parent 2df9e07 commit 88bed3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/network/network.cc
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void Connection::setup( void )
/* set diffserv values to AF42 + ECT */
uint8_t dscp = 0x92;
if ( setsockopt( sock, IPPROTO_IP, IP_TOS, &dscp, 1) < 0 ) {
perror( "setsockopt( IP_TOS )" );
// perror( "setsockopt( IP_TOS )" );
}
}

Expand Down

0 comments on commit 88bed3e

Please sign in to comment.