Style cleanup
[citadel.git] / citadel / modules / extnotify / extnotify.h
1 /*
2  * File:   extnotify.h
3  * Author: Mathew McBride <matt@mcbridematt.dhs.org> / <matt@comalies>
4  * Copyright (c) 2008-2009
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "../eventclient/serv_curl.h"
22 #define PAGER_CONFIG_MESSAGE "__ Push email settings __"
23 #define FUNAMBOL_CONFIG_TEXT "funambol"
24 #define PAGER_CONFIG_SYSTEM  "textmessage"
25 #define PAGER_CONFIG_HTTP  "httpmessage"
26 typedef enum _eNotifyType {
27         eNone,
28         eFunambol,
29         eHttpMessages,
30         eTextMessage
31 }eNotifyType;
32
33
34 #define FUNAMBOL_WS "/funambol/services/admin"
35
36 typedef struct _NotifyContext {
37         StrBuf **NotifyHostList;
38         int nNotifyHosts;
39         HashList *NotifyErrors;
40         AsyncIO IO;
41 } NotifyContext;
42
43 int notify_http_server(char *remoteurl,
44                        const char* template,
45                        long tlen,
46                        char *user,
47                        char *msgid,
48                        long MsgNum,
49                        NotifyContext *Ctx);
50
51 void ExtNotify_PutErrorMessage(NotifyContext *Ctx, StrBuf *ErrMsg);
52
53 ///void process_notify(long msgnum, void *usrdata);