- Replace flags used for LCP/IPCP with state machine.
- Use openssl MD5, fix DAE vector (Alex Kiernan).
This commit is contained in:
parent
e2a3f0371e
commit
aabf1d3fe9
27 changed files with 1399 additions and 1120 deletions
12
cluster.h
12
cluster.h
|
|
@ -1,5 +1,5 @@
|
|||
// L2TPNS Clustering Stuff
|
||||
// $Id: cluster.h,v 1.13 2005-06-28 14:48:19 bodea Exp $
|
||||
// $Id: cluster.h,v 1.14 2005-07-31 10:04:10 bodea Exp $
|
||||
|
||||
#ifndef __CLUSTER_H__
|
||||
#define __CLUSTER_H__
|
||||
|
|
@ -72,13 +72,13 @@ typedef struct {
|
|||
} pingt;
|
||||
|
||||
int cluster_init(void);
|
||||
int processcluster(char *buf, int size, in_addr_t addr);
|
||||
int processcluster(uint8_t *buf, int size, in_addr_t addr);
|
||||
int cluster_send_session(int sid);
|
||||
int cluster_send_tunnel(int tid);
|
||||
int master_forward_packet(char *data, int size, in_addr_t addr, int port);
|
||||
int master_forward_dae_packet(char *data, int size, in_addr_t addr, int port);
|
||||
int master_throttle_packet(int tid, char *data, int size);
|
||||
int master_garden_packet(sessionidt s, char *data, int size);
|
||||
int master_forward_packet(uint8_t *data, int size, in_addr_t addr, int port);
|
||||
int master_forward_dae_packet(uint8_t *data, int size, in_addr_t addr, int port);
|
||||
int master_throttle_packet(int tid, uint8_t *data, int size);
|
||||
int master_garden_packet(sessionidt s, uint8_t *data, int size);
|
||||
void master_update_counts(void);
|
||||
void cluster_send_ping(time_t basetime);
|
||||
void cluster_heartbeat(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue