- Replace flags used for LCP/IPCP with state machine.
- Use openssl MD5, fix DAE vector (Alex Kiernan).
This commit is contained in:
parent
17b2ce31a6
commit
afc8f4c6c0
27 changed files with 1399 additions and 1120 deletions
4
tbf.h
4
tbf.h
|
|
@ -30,12 +30,12 @@ typedef struct {
|
|||
uint32_t p_delayed; // Total packets not sent immediately.
|
||||
|
||||
int sizes[TBF_MAX_QUEUE];
|
||||
char packets[TBF_MAX_QUEUE][TBF_MAX_SIZE];
|
||||
uint8_t packets[TBF_MAX_QUEUE][TBF_MAX_SIZE];
|
||||
} tbft;
|
||||
|
||||
void init_tbf(int num_tbfs);
|
||||
int tbf_run_timer(void);
|
||||
int tbf_queue_packet(int tbf_id, char * data, int size);
|
||||
int tbf_queue_packet(int tbf_id, uint8_t * data, int size);
|
||||
int new_tbf(int sid, int max_credit, int rate, void (*f)(sessionidt, uint8_t *, int));
|
||||
int free_tbf(int tid);
|
||||
void fsck_tbfs(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue