diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-10 08:44:17 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-10 08:44:17 +0000 |
commit | 1061c878a9e342424e8204aba71eb3b532850fd7 (patch) | |
tree | 5a94e281717e7d5b2b2d6815b1f43176ac0ae237 /Source/charon/send_queue.h | |
parent | ed7634e696b8b96efb14c959865b9e964b843cdb (diff) | |
download | strongswan-1061c878a9e342424e8204aba71eb3b532850fd7.tar.bz2 strongswan-1061c878a9e342424e8204aba71eb3b532850fd7.tar.xz |
- linked_list, event_queue, send_queue and job_queue returns now
count directly
Diffstat (limited to 'Source/charon/send_queue.h')
-rw-r--r-- | Source/charon/send_queue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/charon/send_queue.h b/Source/charon/send_queue.h index d4e5cc5fa..41ae1e3a8 100644 --- a/Source/charon/send_queue.h +++ b/Source/charon/send_queue.h @@ -41,9 +41,9 @@ struct send_queue_s { * * @param send_queue_t calling object * @param[out] count integer pointer to store the count in - * @returns SUCCESS if succeeded, FAILED otherwise + * @returns number of items in queue */ - status_t (*get_count) (send_queue_t *send_queue, int *count); + int (*get_count) (send_queue_t *send_queue); /** * @brief get the next packet from the queue |