From: Guus Sliepen Date: Thu, 14 Nov 2002 22:09:03 +0000 (+0000) Subject: Fix PriorityInheritance. X-Git-Tag: release-1.0~108 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=5b2a62ebb6317cd88e491ee958c54670f381aee8;ds=sidebyside Fix PriorityInheritance. --- diff --git a/src/net_packet.c b/src/net_packet.c index 7c51ad63..65ec7d75 100644 --- a/src/net_packet.c +++ b/src/net_packet.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: net_packet.c,v 1.1.2.24 2002/09/15 14:55:53 guus Exp $ + $Id: net_packet.c,v 1.1.2.25 2002/11/14 22:09:03 guus Exp $ */ #include "config.h" @@ -295,7 +295,7 @@ void send_udppacket(node_t *n, vpn_packet_t *inpkt) if(debug_lvl >= DEBUG_TRAFFIC) syslog(LOG_DEBUG, _("Setting outgoing packet priority to %d"), priority); - if(setsockopt(sock, SOL_IP, IP_TOS, &priority, sizeof(priority))) /* SO_PRIORITY doesn't seem to work */ + if(setsockopt(listen_socket[sock].udp, SOL_IP, IP_TOS, &priority, sizeof(priority))) /* SO_PRIORITY doesn't seem to work */ syslog(LOG_ERR, _("System call `%s' failed: %s"), "setsockopt", strerror(errno)); }