Blame apache2/persist_dbm.h

Packit 284210
/*
Packit 284210
* ModSecurity for Apache 2.x, http://www.modsecurity.org/
Packit 284210
* Copyright (c) 2004-2013 Trustwave Holdings, Inc. (http://www.trustwave.com/)
Packit 284210
*
Packit 284210
* You may not use this file except in compliance with
Packit 284210
* the License.  You may obtain a copy of the License at
Packit 284210
*
Packit 284210
*     http://www.apache.org/licenses/LICENSE-2.0
Packit 284210
*
Packit 284210
* If any of the files related to licensing are missing or if you have any
Packit 284210
* other questions related to licensing please contact Trustwave Holdings, Inc.
Packit 284210
* directly using the email address security@modsecurity.org.
Packit 284210
*/
Packit 284210
Packit 284210
#ifndef _PERSIST_DBM_H_
Packit 284210
#define _PERSIST_DBM_H_
Packit 284210
Packit 284210
#include "apr_general.h"
Packit 284210
#include "modsecurity.h"
Packit 284210
Packit 284210
apr_table_t DSOLOCAL *collection_retrieve(modsec_rec *msr, const char *col_name,
Packit 284210
    const char *col_value, int col_value_length);
Packit 284210
Packit 284210
int DSOLOCAL collection_store(modsec_rec *msr, apr_table_t *collection);
Packit 284210
Packit 284210
int DSOLOCAL collections_remove_stale(modsec_rec *msr, const char *col_name);
Packit 284210
Packit 284210
#endif