srdb2/db_con.h

00001 /* 
00002  * $Id$ 
00003  *
00004  * Copyright (C) 2001-2003 FhG FOKUS
00005  * Copyright (C) 2006-2007 iptelorg GmbH
00006  *
00007  * This file is part of ser, a free SIP server.
00008  *
00009  * ser is free software; you can redistribute it and/or modify
00010  * it under the terms of the GNU General Public License as published by
00011  * the Free Software Foundation; either version 2 of the License, or
00012  * (at your option) any later version
00013  *
00014  * For a license to use the ser software under conditions
00015  * other than those described here, or to purchase support for this
00016  * software, please contact iptel.org by e-mail at the following addresses:
00017  *    info@iptel.org
00018  *
00019  * ser is distributed in the hope that it will be useful,
00020  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00021  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00022  * GNU General Public License for more details.
00023  *
00024  * You should have received a copy of the GNU General Public License 
00025  * along with this program; if not, write to the Free Software 
00026  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00027  */
00028 
00029 #ifndef _DB_CON_H
00030 #define _DB_CON_H  1
00031 
00036 #include "db_gen.h"
00037 #include "db_ctx.h"
00038 #include "db_uri.h"
00039 
00040 #ifdef __cplusplus
00041 extern "C" {
00042 #endif /* __cplusplus */
00043 
00044 struct db_con;
00045 struct db_ctx;
00046 
00047 typedef int (db_con_connect_t)(struct db_con* con);
00048 typedef void (db_con_disconnect_t)(struct db_con* con);
00049 
00050 
00051 typedef struct db_con {
00052         db_gen_t gen;            /* Generic part of the structure */
00053         db_con_connect_t* connect;
00054         db_con_disconnect_t* disconnect;
00055 
00056         struct db_ctx* ctx;
00057         db_uri_t* uri;
00058 } db_con_t;
00059 
00060 struct db_con* db_con(struct db_ctx* ctx, db_uri_t* uri);
00061 void db_con_free(struct db_con* con);
00062 
00063 #ifdef __cplusplus
00064 }
00065 #endif /* __cplusplus */
00066 
00069 #endif /* _DB_CON_H */
00070 
00071