mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
236 B
C
16 lines
236 B
C
17 years ago
|
#ifndef __TM_QUEUES_H__
|
||
|
#define __TM_QUEUES_H__
|
||
|
|
||
|
typedef struct _Tmq {
|
||
|
char *name;
|
||
|
u_int16_t id;
|
||
|
u_int16_t usecnt;
|
||
|
} Tmq;
|
||
|
|
||
|
Tmq* TmqCreateQueue(char *name);
|
||
|
Tmq* TmqGetQueueByName(char *name);
|
||
|
|
||
|
|
||
|
#endif /* __TM_QUEUES_H__ */
|
||
|
|