along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: net.h,v 1.9.4.43 2002/02/26 23:26:41 guus Exp $
+ $Id: net.h,v 1.9.4.44 2002/03/01 12:26:56 guus Exp $
*/
#ifndef __TINC_NET_H__
typedef struct vpn_packet_t {
length_t len; /* the actual number of bytes in the `data' field */
+ int priority; /* priority or TOS */
unsigned int seqno; /* 32 bits sequence number (network byte order of course) */
unsigned char data[MAXSIZE];
} vpn_packet_t;
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.5 2002/02/26 23:26:41 guus Exp $
+ $Id: net_packet.c,v 1.1.2.6 2002/03/01 12:26:56 guus Exp $
*/
#include "config.h"
long int complen = MTU + 12;
EVP_CIPHER_CTX ctx;
vpn_packet_t *copy;
+ static int priority = 0;
+ int origpriority;
cp
if(!n->status.validkey)
{
}
origlen = inpkt->len;
+ origpriority = inpkt->priority;
/* Compress the packet */
/* Send the packet */
+ if(priorityinheritance && origpriority != priority)
+ {
+ priority = origpriority;
+ if(debug_lvl >= DEBUG_TRAFFIC)
+ syslog(LOG_DEBUG, _("Setting outgoing packet priority to %d"), priority);
+ if(setsockopt(udp_socket[0], 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));
+ }
+
if((sendto(udp_socket[0], (char *)&inpkt->seqno, inpkt->len, 0, &(n->address.sa), SALEN(n->address.sa))) < 0)
{
syslog(LOG_ERR, _("Error sending packet to %s (%s): %s"),
{
syslog(LOG_ERR, _("This is a bug: %s:%d: %d:%s"),
__FILE__, __LINE__, sock, strerror(errno));
- return;
+ cp_trace();
+ exit(1);
}
if(x)
{
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: route.c,v 1.1.2.24 2002/02/20 16:04:59 guus Exp $
+ $Id: route.c,v 1.1.2.25 2002/03/01 12:26:56 guus Exp $
*/
#include "config.h"
#include "system.h"
int routing_mode = RMODE_ROUTER;
+int priorityinheritance = 0;
subnet_t mymac;
void learn_mac(mac_t *address)
{
subnet_t *subnet;
cp
+ if(priorityinheritance)
+ packet->priority = packet->data[15];
+
subnet = lookup_subnet_ipv4((ipv4_t *)&packet->data[30]);
cp
if(!subnet)
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: route.h,v 1.1.2.5 2002/02/10 21:57:54 guus Exp $
+ $Id: route.h,v 1.1.2.6 2002/03/01 12:26:56 guus Exp $
*/
#ifndef __TINC_ROUTE_H__
};
extern int routing_mode;
+extern int priorityinheritance;
extern void route_incoming(node_t *, vpn_packet_t *);
extern void route_outgoing(vpn_packet_t *);