]> git.meshlink.io Git - meshlink/blob - src/route.c
Remove everything GPL that is not copyright Guus Sliepen, update copyright statements.
[meshlink] / src / route.c
1 /*
2     route.c -- routing
3     Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "system.h"
21
22 #include "logger.h"
23 #include "net.h"
24 #include "route.h"
25 #include "utils.h"
26
27 rmode_t routing_mode = RMODE_ROUTER;
28 fmode_t forwarding_mode = FMODE_INTERNAL;
29 bmode_t broadcast_mode = BMODE_MST;
30 bool decrement_ttl = false;
31 bool directonly = false;
32 bool priorityinheritance = false;
33 int macexpire = 600;
34 mac_t mymac = {{0xFE, 0xFD, 0, 0, 0, 0}};
35 bool pcap = false;
36
37 static bool ratelimit(int frequency) {
38         static time_t lasttime = 0;
39         static int count = 0;
40
41         if(lasttime == now.tv_sec) {
42                 if(count >= frequency)
43                         return true;
44         } else {
45                 lasttime = now.tv_sec;
46                 count = 0;
47         }
48
49         count++;
50         return false;
51 }
52
53 static bool checklength(node_t *source, vpn_packet_t *packet, length_t length) {
54         if(packet->len < length) {
55                 logger(DEBUG_TRAFFIC, LOG_WARNING, "Got too short packet from %s (%s)", source->name, source->hostname);
56                 return false;
57         } else
58                 return true;
59 }
60
61 void route(node_t *source, vpn_packet_t *packet) {
62         // TODO: route on name or key
63 }