add setrxspeed
This commit is contained in:
parent
5acef8bb78
commit
97b796f5a5
2 changed files with 39 additions and 1 deletions
3
Makefile
3
Makefile
|
|
@ -44,7 +44,7 @@ OBJS = arp.o \
|
|||
tbf.o \
|
||||
util.o
|
||||
|
||||
PLUGINS = garden.so autothrottle.so autosnoop.so stripdomain.so
|
||||
PLUGINS = garden.so autothrottle.so autosnoop.so stripdomain.so setrxspeed.so
|
||||
TARGETS = l2tpns nsctl generateload bounce $(PLUGINS)
|
||||
|
||||
all: $(TARGETS)
|
||||
|
|
@ -126,3 +126,4 @@ garden.so: garden.c l2tpns.h plugin.h control.h
|
|||
autothrottle.so: autothrottle.c l2tpns.h plugin.h control.h
|
||||
autosnoop.so: autosnoop.c l2tpns.h plugin.h control.h
|
||||
stripdomain.so: stripdomain.c l2tpns.h plugin.h
|
||||
setrxspeed.so: setrxspeed.c l2tpns.h plugin.h
|
||||
|
|
|
|||
37
setrxspeed.c
Normal file
37
setrxspeed.c
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
#include <string.h>
|
||||
#include "l2tpns.h"
|
||||
#include "plugin.h"
|
||||
|
||||
/* fudge up session rx speed if not set */
|
||||
|
||||
char const *cvs_id = "$Id: setrxspeed.c,v 1.1 2004/11/05 02:38:59 bodea Exp $";
|
||||
|
||||
int __plugin_api_version = 1;
|
||||
static struct pluginfuncs *p = 0;
|
||||
|
||||
int plugin_post_auth(struct param_post_auth *data)
|
||||
{
|
||||
if (!data->auth_allowed) return PLUGIN_RET_OK;
|
||||
|
||||
if (!data->s->rx_connect_speed)
|
||||
{
|
||||
switch (data->s->tx_connect_speed)
|
||||
{
|
||||
case 256 :
|
||||
data->s->rx_connect_speed = 64;
|
||||
break;
|
||||
case 512 :
|
||||
data->s->rx_connect_speed = 128;
|
||||
break;
|
||||
case 1500 :
|
||||
data->s->rx_connect_speed = 256;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return PLUGIN_RET_OK;
|
||||
}
|
||||
|
||||
int plugin_init(struct pluginfuncs *funcs)
|
||||
{
|
||||
return ((p = funcs)) ? 1 : 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue