Mercurial > pidgin
view plugins/icq/queue.h @ 1342:84aef77f0add
[gaim-migrate @ 1352]
Umm, I forgot this :-).
committer: Tailor Script <tailor@pidgin.im>
author | Rob Flynn <gaim@robflynn.com> |
---|---|
date | Thu, 21 Dec 2000 02:11:56 +0000 |
parents | 201ec77f3a60 |
children | 0ef6603d986e |
line wrap: on
line source
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ #ifndef _QUEUE_H_ #define _QUEUE_H_ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include "icq.h" #include "icqpacket.h" typedef struct udp_item { unsigned char attempts; unsigned long expire; icq_Packet *pack; } icq_UDPQueueItem; void icq_UDPQueueNew(ICQLINK*); void icq_UDPQueueFree(ICQLINK*); void icq_UDPQueuePut(ICQLINK*, icq_Packet*, int); icq_Packet *icq_UDPQueueGet(ICQLINK*); icq_Packet *icq_UDPQueuePeek(ICQLINK*); void icq_UDPQueueDelete(ICQLINK*); void icq_UDPQueueFree(ICQLINK*); void icq_UDPQueueDelSeq(ICQLINK*, WORD); long icq_UDPQueueInterval(ICQLINK *); #endif