mirror of https://github.com/OISF/suricata
host: use storage api
parent
022c0e466e
commit
e2b006f523
@ -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);
|
||||||
Loading…
Reference in New Issue