projects
/
l2tpns.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge from Master
[l2tpns.git]
/
tbf.c
diff --git
a/tbf.c
b/tbf.c
index
b95b7d7
..
9dba63e
100644
(file)
--- a/
tbf.c
+++ b/
tbf.c
@@
-1,8
+1,10
@@
// L2TPNS: token bucket filters
// L2TPNS: token bucket filters
-char const *cvs_id_tbf = "$Id: tbf.c,v 1.8 2004-10-29 04:01:11 bodea Exp $";
-
#include <string.h>
#include <string.h>
+#include <linux/rtnetlink.h>
+#include <netinet/ip6.h>
+
+#include "dhcp6.h"
#include "l2tpns.h"
#include "util.h"
#include "tbf.h"
#include "l2tpns.h"
#include "util.h"
#include "tbf.h"
@@
-54,7
+56,7
@@
static void del_from_timer(int id)
if (filter_list[id].next == id) { // Last element in chain?
if (timer_chain != id) { // WTF?
if (filter_list[id].next == id) { // Last element in chain?
if (timer_chain != id) { // WTF?
-
log(0,0,0,
0, "Removed a singleton element from TBF, but tc didn't point to it!\n");
+
LOG(0, 0,
0, "Removed a singleton element from TBF, but tc didn't point to it!\n");
} else
timer_chain = -1;
filter_list[id].next = filter_list[id].prev = 0;
} else
timer_chain = -1;
filter_list[id].next = filter_list[id].prev = 0;
@@
-91,12
+93,12
@@
int free_tbf(int tid)
//
// Allocate a new token bucket filter.
//
//
// Allocate a new token bucket filter.
//
-int new_tbf(int sid, int max_credit, int rate, void (*f)(sessionidt, u
8
*, int))
+int new_tbf(int sid, int max_credit, int rate, void (*f)(sessionidt, u
int8_t
*, int))
{
int i;
static int p = 0;
{
int i;
static int p = 0;
-
log(4,0,0,
0, "Allocating new TBF (sess %d, rate %d, helper %p)\n", sid, rate, f);
+
LOG(4, 0,
0, "Allocating new TBF (sess %d, rate %d, helper %p)\n", sid, rate, f);
if (!filter_list)
return 0; // Couldn't alloc memory!
if (!filter_list)
return 0; // Couldn't alloc memory!
@@
-116,7
+118,7
@@
int new_tbf(int sid, int max_credit, int rate, void (*f)(sessionidt, u8 *, int))
return p;
}
return p;
}
-
log(0,0,0,
0, "Ran out of token bucket filters! Sess %d will be un-throttled\n", sid);
+
LOG(0, 0,
0, "Ran out of token bucket filters! Sess %d will be un-throttled\n", sid);
return 0;
}
return 0;
}
@@
-159,10
+161,10
@@
void fsck_tbfs(void)
// If we can send it right away, we do. Else we
// try and queue it to send later. Else we drop it.
//
// If we can send it right away, we do. Else we
// try and queue it to send later. Else we drop it.
//
-int tbf_queue_packet(int tbf_id,
char *
data, int size)
+int tbf_queue_packet(int tbf_id,
uint8_t *
data, int size)
{
int i;
{
int i;
- tbft *
f;
+ tbft *f;
if (!filter_list)
return -1;
if (!filter_list)
return -1;
@@
-300,7
+302,7
@@
int tbf_run_timer(void)
if (filter_list[i].lasttime == TIME) // Did we just run it?
continue;
if (filter_list[i].lasttime == TIME) // Did we just run it?
continue;
-
log(1,0,0,
0, "Missed tbf %d! Not on the timer chain?(n %d, p %d, tc %d)\n", i,
+
LOG(1, 0,
0, "Missed tbf %d! Not on the timer chain?(n %d, p %d, tc %d)\n", i,
filter_list[i].next, filter_list[i].prev, timer_chain);
tbf_run_queue(i);
}
filter_list[i].next, filter_list[i].prev, timer_chain);
tbf_run_queue(i);
}
@@
-309,7
+311,7
@@
int tbf_run_timer(void)
return 1;
}
return 1;
}
-int cmd_show_tbf(struct cli_def *cli, char *command, char **argv, int argc)
+int cmd_show_tbf(struct cli_def *cli, c
onst c
har *command, char **argv, int argc)
{
int i;
int count = 0;
{
int i;
int count = 0;
@@
-318,7
+320,9
@@
int cmd_show_tbf(struct cli_def *cli, char *command, char **argv, int argc)
return CLI_HELP_NO_ARGS;
if (!config->cluster_iam_master) {
return CLI_HELP_NO_ARGS;
if (!config->cluster_iam_master) {
- cli_print(cli, "Can't do this on a slave. Do it on %s", inet_toa(config->cluster_master_address));
+ cli_error(cli, "Can't do this on a slave. Do it on %s",
+ fmtaddr(config->cluster_master_address, 0));
+
return CLI_OK;
}
return CLI_OK;
}