Blame apache2/msc_gsb.h

Packit Service 384592
/*
Packit Service 384592
* ModSecurity for Apache 2.x, http://www.modsecurity.org/
Packit Service 384592
* Copyright (c) 2004-2013 Trustwave Holdings, Inc. (http://www.trustwave.com/)
Packit Service 384592
*
Packit Service 384592
* You may not use this file except in compliance with
Packit Service 384592
* the License.  You may obtain a copy of the License at
Packit Service 384592
*
Packit Service 384592
*     http://www.apache.org/licenses/LICENSE-2.0
Packit Service 384592
*
Packit Service 384592
* If any of the files related to licensing are missing or if you have any
Packit Service 384592
* other questions related to licensing please contact Trustwave Holdings, Inc.
Packit Service 384592
* directly using the email address security@modsecurity.org.
Packit Service 384592
*/
Packit Service 384592
Packit Service 384592
#ifndef _MSC_GSB_H_
Packit Service 384592
#define _MSC_GSB_H_
Packit Service 384592
Packit Service 384592
typedef struct gsb_db gsb_db;
Packit Service 384592
Packit Service 384592
#include <apr_file_io.h>
Packit Service 384592
#include "modsecurity.h"
Packit Service 384592
#include "apr_hash.h"
Packit Service 384592
Packit Service 384592
struct gsb_db {
Packit Service 384592
    apr_file_t *db;
Packit Service 384592
    const char *dbfn;
Packit Service 384592
    apr_hash_t *gsb_table;
Packit Service 384592
};
Packit Service 384592
Packit Service 384592
int DSOLOCAL gsb_db_init(directory_config *dcfg, const char *dbfn, char **error_msg);
Packit Service 384592
Packit Service 384592
#endif