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.
suricata/src/tmqh-simple.c

49 lines
1.1 KiB
C

#include "vips.h"
#include "packet-queue.h"
#include "decode.h"
#include "threads.h"
#include "threadvars.h"
#include "tm-queuehandlers.h"
Packet *TmqhInputSimple(ThreadVars *t);
void TmqhOutputSimple(ThreadVars *t, Packet *p);
void TmqhSimpleRegister (void) {
tmqh_table[TMQH_SIMPLE].name = "simple";
tmqh_table[TMQH_SIMPLE].InHandler = TmqhInputSimple;
tmqh_table[TMQH_SIMPLE].OutHandler = TmqhOutputSimple;
}
Packet *TmqhInputSimple(ThreadVars *t)
{
PacketQueue *q = &trans_q[t->inq->id];
mutex_lock(&q->mutex_q);
if (q->len == 0) {
/* if we have no packets in queue, wait... */
pthread_cond_wait(&q->cond_q, &q->mutex_q);
}
if (q->len > 0) {
Packet *p = PacketDequeue(q);
mutex_unlock(&q->mutex_q);
return p;
} else {
/* return NULL if we have no pkt. Should only happen on signals. */
mutex_unlock(&q->mutex_q);
return NULL;
}
}
void TmqhOutputSimple(ThreadVars *t, Packet *p)
{
PacketQueue *q = &trans_q[t->outq->id];
mutex_lock(&q->mutex_q);
PacketEnqueue(q, p);
pthread_cond_signal(&q->cond_q);
mutex_unlock(&q->mutex_q);
}