make output more quiet

remotes/origin/master-1.0.x
Victor Julien 18 years ago
parent 298d4be7bb
commit 27f236778a

@ -566,15 +566,15 @@ int SigAddressPrepareStage1(DetectEngineCtx *de_ctx) {
for (tmp_s = de_ctx->sig_list; tmp_s != NULL; tmp_s = tmp_s->next) { for (tmp_s = de_ctx->sig_list; tmp_s != NULL; tmp_s = tmp_s->next) {
de_ctx->sig_array[tmp_s->num] = tmp_s; de_ctx->sig_array[tmp_s->num] = tmp_s;
printf(" + Signature %u, internal id %u, ptrs %p %p ", tmp_s->id, tmp_s->num, tmp_s, de_ctx->sig_array[tmp_s->num]); //printf(" + Signature %u, internal id %u, ptrs %p %p ", tmp_s->id, tmp_s->num, tmp_s, de_ctx->sig_array[tmp_s->num]);
/* see if the sig is ip only */ /* see if the sig is ip only */
if (SignatureIsIPOnly(tmp_s) == 1) { if (SignatureIsIPOnly(tmp_s) == 1) {
tmp_s->flags |= SIG_FLAG_IPONLY; tmp_s->flags |= SIG_FLAG_IPONLY;
cnt_iponly++; cnt_iponly++;
printf("(IP only)\n"); //printf("(IP only)\n");
} else { } else {
printf("\n"); //printf("\n");
} }
for (gr = tmp_s->src.ipv4_head; gr != NULL; gr = gr->next) { for (gr = tmp_s->src.ipv4_head; gr != NULL; gr = gr->next) {
@ -907,8 +907,8 @@ int CreateGroupedAddrList(DetectAddressGroup *srchead, int family, DetectAddress
for ( ; sgr != NULL; sgr = sgr->next) { for ( ; sgr != NULL; sgr = sgr->next) {
int r = DetectAddressCmp(agr->ad,sgr->ad); int r = DetectAddressCmp(agr->ad,sgr->ad);
if (r == ADDRESS_ES || r == ADDRESS_EB) { if (r == ADDRESS_ES || r == ADDRESS_EB) {
printf("AGR "); DetectAddressDataPrint(agr->ad);printf(" -> "); // printf("AGR "); DetectAddressDataPrint(agr->ad);printf(" -> ");
printf(" sgr "); DetectAddressDataPrint(sgr->ad);printf("\n"); // printf(" sgr "); DetectAddressDataPrint(sgr->ad);printf("\n");
} }
} }
} }
@ -1890,13 +1890,11 @@ int SigAddressPrepareStage3(DetectEngineCtx *de_ctx) {
printf("* Signature group heads: unique %u, copies %u.\n", de_ctx->gh_unique, de_ctx->gh_reuse); printf("* Signature group heads: unique %u, copies %u.\n", de_ctx->gh_unique, de_ctx->gh_reuse);
printf("* MPM instances: %u unique, copies %u (none %u).\n", printf("* MPM instances: %u unique, copies %u (none %u).\n",
de_ctx->mpm_unique, de_ctx->mpm_reuse, de_ctx->mpm_none); de_ctx->mpm_unique, de_ctx->mpm_reuse, de_ctx->mpm_none);
//u_int32_t mpm_cnt = de_ctx->mpm_unique + de_ctx->mpm_reuse + de_ctx->mpm_none;
printf("* MPM (URI) instances: %u unique, copies %u (none %u).\n", printf("* MPM (URI) instances: %u unique, copies %u (none %u).\n",
de_ctx->mpm_uri_unique, de_ctx->mpm_uri_reuse, de_ctx->mpm_uri_none); de_ctx->mpm_uri_unique, de_ctx->mpm_uri_reuse, de_ctx->mpm_uri_none);
//u_int32_t mpm_uri_cnt = de_ctx->mpm_uri_unique + de_ctx->mpm_uri_reuse + de_ctx->mpm_uri_none;
printf("* MPM max patcnt %u, avg %u\n", de_ctx->mpm_max_patcnt, de_ctx->mpm_tot_patcnt/de_ctx->mpm_unique); printf("* MPM max patcnt %u, avg %u\n", de_ctx->mpm_max_patcnt, de_ctx->mpm_tot_patcnt/de_ctx->mpm_unique);
if (de_ctx->mpm_uri_tot_patcnt && de_ctx->mpm_uri_unique) if (de_ctx->mpm_uri_tot_patcnt && de_ctx->mpm_uri_unique)
printf("* MPM (URI) max patcnt %u, avg %u\n", de_ctx->mpm_uri_max_patcnt, de_ctx->mpm_uri_tot_patcnt/de_ctx->mpm_uri_unique); printf("* MPM (URI) max patcnt %u, avg %u (%u/%u)\n", de_ctx->mpm_uri_max_patcnt, de_ctx->mpm_uri_tot_patcnt/de_ctx->mpm_uri_unique, de_ctx->mpm_uri_tot_patcnt, de_ctx->mpm_uri_unique);
printf("* Building signature grouping structure, stage 3: building destination address lists... done\n"); printf("* Building signature grouping structure, stage 3: building destination address lists... done\n");
} }
return 0; return 0;

@ -136,7 +136,7 @@ void *TmThreadsSlot1NoInOut(void *td) {
char run = 1; char run = 1;
int r = 0; int r = 0;
printf("TmThreadsSlot1NoInOut: %s starting\n", tv->name); //printf("TmThreadsSlot1NoInOut: %s starting\n", tv->name);
if (s1->Slot1Init != NULL) { if (s1->Slot1Init != NULL) {
r = s1->Slot1Init(tv, &s1->slot1_data); r = s1->Slot1Init(tv, &s1->slot1_data);
@ -164,7 +164,7 @@ void *TmThreadsSlot1NoInOut(void *td) {
} }
} }
printf("TmThreadsSlot1NoInOut: %s ending\n", tv->name); //printf("TmThreadsSlot1NoInOut: %s ending\n", tv->name);
pthread_exit((void *) 0); pthread_exit((void *) 0);
} }
@ -175,7 +175,7 @@ void *TmThreadsSlot1(void *td) {
char run = 1; char run = 1;
int r = 0; int r = 0;
printf("TmThreadsSlot1: %s starting\n", tv->name); //printf("TmThreadsSlot1: %s starting\n", tv->name);
if (s1->Slot1Init != NULL) { if (s1->Slot1Init != NULL) {
r = s1->Slot1Init(tv, &s1->slot1_data); r = s1->Slot1Init(tv, &s1->slot1_data);
@ -219,7 +219,7 @@ void *TmThreadsSlot1(void *td) {
} }
} }
printf("TmThreadsSlot1: %s ending\n", tv->name); //printf("TmThreadsSlot1: %s ending\n", tv->name);
pthread_exit((void *) 0); pthread_exit((void *) 0);
} }
@ -230,7 +230,7 @@ void *TmThreadsSlot2(void *td) {
char run = 1; char run = 1;
int r = 0; int r = 0;
printf("TmThreadsSlot2: %s starting\n", tv->name); //printf("TmThreadsSlot2: %s starting\n", tv->name);
if (s2->Slot1Init != NULL) { if (s2->Slot1Init != NULL) {
r = s2->Slot1Init(tv, &s2->slot1_data); r = s2->Slot1Init(tv, &s2->slot1_data);
@ -298,7 +298,7 @@ void *TmThreadsSlot2(void *td) {
} }
} }
printf("TmThreadsSlot2: %s ending\n", tv->name); //printf("TmThreadsSlot2: %s ending\n", tv->name);
pthread_exit((void *) 0); pthread_exit((void *) 0);
} }
@ -309,7 +309,7 @@ void *TmThreadsSlot3(void *td) {
char run = 1; char run = 1;
int r = 0; int r = 0;
printf("TmThreadsSlot3: %s starting\n", tv->name); //printf("TmThreadsSlot3: %s starting\n", tv->name);
if (s3->Slot1Init != NULL) { if (s3->Slot1Init != NULL) {
r = s3->Slot1Init(tv, &s3->slot1_data); r = s3->Slot1Init(tv, &s3->slot1_data);
@ -414,7 +414,7 @@ void *TmThreadsSlot3(void *td) {
} }
} }
printf("TmThreadsSlot3: %s ending\n", tv->name); //printf("TmThreadsSlot3: %s ending\n", tv->name);
pthread_exit((void *) 0); pthread_exit((void *) 0);
} }
@ -546,14 +546,14 @@ ThreadVars *TmThreadCreate(char *name, char *inq_name, char *inqh_name, char *ou
tv->inq = tmq; tv->inq = tmq;
tv->inq->usecnt++; tv->inq->usecnt++;
printf("TmThreadCreate: tv->inq->id %u\n", tv->inq->id); //printf("TmThreadCreate: tv->inq->id %u\n", tv->inq->id);
} }
if (inqh_name != NULL) { if (inqh_name != NULL) {
tmqh = TmqhGetQueueHandlerByName(inqh_name); tmqh = TmqhGetQueueHandlerByName(inqh_name);
if (tmqh == NULL) goto error; if (tmqh == NULL) goto error;
tv->tmqh_in = tmqh->InHandler; tv->tmqh_in = tmqh->InHandler;
printf("TmThreadCreate: tv->tmqh_in %p\n", tv->tmqh_in); //printf("TmThreadCreate: tv->tmqh_in %p\n", tv->tmqh_in);
} }
/* set the outgoing queue */ /* set the outgoing queue */
@ -566,14 +566,14 @@ ThreadVars *TmThreadCreate(char *name, char *inq_name, char *inqh_name, char *ou
tv->outq = tmq; tv->outq = tmq;
tv->outq->usecnt++; tv->outq->usecnt++;
printf("TmThreadCreate: tv->outq->id %u\n", tv->outq->id); //printf("TmThreadCreate: tv->outq->id %u\n", tv->outq->id);
} }
if (outqh_name != NULL) { if (outqh_name != NULL) {
tmqh = TmqhGetQueueHandlerByName(outqh_name); tmqh = TmqhGetQueueHandlerByName(outqh_name);
if (tmqh == NULL) goto error; if (tmqh == NULL) goto error;
tv->tmqh_out = tmqh->OutHandler; tv->tmqh_out = tmqh->OutHandler;
printf("TmThreadCreate: tv->tmqh_out %p\n", tv->tmqh_out); //printf("TmThreadCreate: tv->tmqh_out %p\n", tv->tmqh_out);
} }
if (TmThreadSetSlots(tv, slots) != 0) { if (TmThreadSetSlots(tv, slots) != 0) {
@ -592,7 +592,7 @@ void TmThreadAppend(ThreadVars *tv) {
tv->next = NULL; tv->next = NULL;
tv->prev = NULL; tv->prev = NULL;
printf("TmThreadAppend: thread \'%s\' is the first thread in the list.\n", tv->name); //printf("TmThreadAppend: thread \'%s\' is the first thread in the list.\n", tv->name);
return; return;
} }
@ -609,7 +609,7 @@ void TmThreadAppend(ThreadVars *tv) {
t = t->next; t = t->next;
} }
printf("TmThreadAppend: thread \'%s\' is added to the list.\n", tv->name); //printf("TmThreadAppend: thread \'%s\' is added to the list.\n", tv->name);
} }
void TmThreadKillThreads(void) { void TmThreadKillThreads(void) {

Loading…
Cancel
Save