2005-04-28 08:26:44 +00:00
|
|
|
/*
|
|
|
|
* $Id: bip.h,v 1.6 2005/04/12 19:34:35 nohar Exp $
|
|
|
|
*
|
|
|
|
* This file is part of the bip project
|
2008-01-09 23:45:40 +01:00
|
|
|
* Copyright (C) 2004 2005 Arnaud Cornet and Loïc Gomez
|
2005-04-28 08:26:44 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
* See the file "COPYING" for the exact licensing terms.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BIP_H
|
|
|
|
#define BIP_H
|
|
|
|
|
2005-12-12 19:03:02 +00:00
|
|
|
#ifdef HAVE_LIBSSL
|
|
|
|
int adm_trust(struct link_client *ic, struct line *line);
|
|
|
|
#endif
|
2008-12-15 19:19:27 +01:00
|
|
|
int adm_bip(bip_t *bip, struct link_client *ic, struct line *line, int privmsg);
|
2005-08-25 08:17:10 +00:00
|
|
|
int ssl_check_trust(struct link_client *ic);
|
|
|
|
void adm_blreset(struct link_client *ic);
|
2007-09-28 10:43:34 +02:00
|
|
|
void bip_notify(struct link_client *ic, char *fmt, ...);
|
2005-08-25 08:17:10 +00:00
|
|
|
|
2005-04-28 08:26:44 +00:00
|
|
|
#endif
|