Packet queues fixed. They caused the trouble when resending keys.

This commit is contained in:
Guus Sliepen 2000-04-25 20:10:37 +00:00
parent 04db888b1a
commit 5b72422857
2 changed files with 57 additions and 22 deletions

View file

@ -83,6 +83,7 @@ typedef struct status_bits_t {
typedef struct queue_element_t {
void *packet;
struct queue_element_t *prev;
struct queue_element_t *next;
} queue_element_t;