diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-24 09:17:51 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-24 09:17:51 +0000 |
commit | 95c61cb956505cdb0a91c8c8cd134dda3aac744d (patch) | |
tree | 0aa9591a9f5d900fea41a48778956f07f2d5b0b3 /Source/charon/queues/send_queue.h | |
parent | 1f9c9180e4afb43d0bec63b5e63146e08f41652a (diff) | |
download | strongswan-95c61cb956505cdb0a91c8c8cd134dda3aac744d.tar.bz2 strongswan-95c61cb956505cdb0a91c8c8cd134dda3aac744d.tar.xz |
changed enum and structs names to _t
Diffstat (limited to 'Source/charon/queues/send_queue.h')
-rw-r--r-- | Source/charon/queues/send_queue.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/charon/queues/send_queue.h b/Source/charon/queues/send_queue.h index c1f643c13..572c40e62 100644 --- a/Source/charon/queues/send_queue.h +++ b/Source/charon/queues/send_queue.h @@ -26,15 +26,16 @@ #include <types.h> #include <network/packet.h> + +typedef struct send_queue_t send_queue_t; + /** * @brief Send-Queue * * Although the send-queue is based on a linked_list_t * all access functions are thread-save implemented */ -typedef struct send_queue_s send_queue_t; - -struct send_queue_s { +struct send_queue_t { /** * @brief returns number of packets in queue |