host: use storage api

pull/466/head
Victor Julien 13 years ago
parent 022c0e466e
commit e2b006f523

@ -197,6 +197,7 @@ flow-util.c flow-util.h \
flow-var.c flow-var.h \
host.c host.h \
host-queue.c host-queue.h \
host-storage.c host-storage.h \
host-timeout.c host-timeout.h \
log-dnslog.c log-dnslog.h \
log-droplog.c log-droplog.h \

@ -0,0 +1,54 @@
/* Copyright (C) 2007-2013 Open Information Security Foundation
*
* You can copy, redistribute or modify this Program under the terms of
* the GNU General Public License version 2 as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* version 2 along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
/**
* \file
*
* \author Victor Julien <victor@inliniac.net>
*
* Host wrapper around storage api
*/
#include "suricata-common.h"
#include "host-storage.h"
#include "util-unittests.h"
void *HostGetStorageById(Host *h, int id) {
return StorageGetById(h->storage, STORAGE_HOST, id);
}
void *HostAllocStorageById(Host *h, int id) {
return StorageAllocById(&h->storage, STORAGE_HOST, id);
}
void HostFreeStorageById(Host *h, int id) {
StorageFreeById(h->storage, STORAGE_HOST, id);
}
void HostFreeStorage(Host *h) {
StorageFree(&h->storage, STORAGE_HOST);
}
#ifdef UNITTESTS
#endif
void RegisterHostStorageTests(void) {
#ifdef UNITTESTS
#endif
}

@ -0,0 +1,33 @@
/* Copyright (C) 2007-2013 Open Information Security Foundation
*
* You can copy, redistribute or modify this Program under the terms of
* the GNU General Public License version 2 as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* version 2 along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
/**
* \file
*
* \author Victor Julien <victor@inliniac.net>
*
* Host wrapper around storage api
*/
#include "util-storage.h"
#include "host.h"
void *HostGetStorageById(Host *h, int id);
void *HostAllocStorageById(Host *h, int id);
void HostFreeStorageById(Host *h, int id);
void HostFreeStorage(Host *h);

@ -25,6 +25,7 @@
#define __HOST_H__
#include "decode.h"
#include "util-storage.h"
/** Spinlocks or Mutex for the flow buckets. */
//#define HRLOCK_SPIN
@ -68,6 +69,8 @@ typedef struct Host_ {
void *tag;
void *threshold;
void *iprep;
/** storage api handle */
Storage *storage;
/** hash pointers, protected by hash row mutex/spin */
struct Host_ *hnext;

Loading…
Cancel
Save