11181
|
1 /**
|
|
2 * @file simple.h
|
|
3 *
|
|
4 * gaim
|
|
5 *
|
|
6 * Copyright (C) 2005, Thomas Butter <butter@uni-mannheim.de>
|
|
7 *
|
|
8 * This program is free software; you can redistribute it and/or modify
|
|
9 * it under the terms of the GNU General Public License as published by
|
|
10 * the Free Software Foundation; either version 2 of the License, or
|
|
11 * (at your option) any later version.
|
|
12 *
|
|
13 * This program is distributed in the hope that it will be useful,
|
|
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16 * GNU General Public License for more details.
|
|
17 *
|
|
18 * You should have received a copy of the GNU General Public License
|
|
19 * along with this program; if not, write to the Free Software
|
|
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
21 */
|
|
22
|
|
23 #ifndef _GAIM_SIMPLE_H
|
|
24 #define _GAIM_SIMPLE_H
|
|
25
|
|
26 #include <glib.h>
|
|
27 #include <time.h>
|
|
28 #include <prpl.h>
|
|
29 #include <digcalc.h>
|
|
30 #include "sipmsg.h"
|
|
31
|
|
32 #define SIMPLE_BUF_INC 1024
|
|
33
|
|
34 struct sip_dialog {
|
|
35 gchar *ourtag;
|
|
36 gchar *theirtag;
|
|
37 gchar *callid;
|
|
38 };
|
|
39
|
|
40 struct simple_watcher {
|
|
41 gchar *name;
|
|
42 time_t expire;
|
|
43 struct sip_dialog dialog;
|
|
44 };
|
|
45
|
|
46 struct simple_buddy {
|
|
47 gchar *name;
|
|
48 time_t resubscribe;
|
|
49 };
|
|
50
|
|
51 struct sip_auth {
|
11346
|
52 int type; /* 1 = Digest / 2 = NTLM */
|
11181
|
53 gchar *nonce;
|
|
54 gchar *realm;
|
|
55 int nc;
|
|
56 HASHHEX HA1;
|
11346
|
57 int retries;
|
11181
|
58 };
|
|
59
|
|
60 struct simple_account_data {
|
|
61 GaimConnection *gc;
|
|
62 gchar *servername;
|
|
63 gchar *username;
|
|
64 gchar *password;
|
|
65 int fd;
|
|
66 int cseq;
|
|
67 time_t reregister;
|
|
68 time_t republish;
|
|
69 int registerstatus; // 0 nothing, 1 first registration send, 2 auth received, 3 registered
|
|
70 struct sip_auth registrar;
|
|
71 struct sip_auth proxy;
|
|
72 int listenfd;
|
|
73 int listenport;
|
11409
|
74 int listenpa;
|
11181
|
75 gchar *ip;
|
|
76 gchar *status;
|
|
77 GHashTable *buddies;
|
|
78 guint registertimeout;
|
11194
|
79 guint resendtimeout;
|
11181
|
80 int connecting;
|
|
81 GaimAccount *account;
|
|
82 gchar *sendlater;
|
|
83 GSList *transactions;
|
|
84 GSList *watcher;
|
|
85 GSList *openconns;
|
11189
|
86 gboolean udp;
|
|
87 struct sockaddr_in serveraddr;
|
11194
|
88 int registerexpire;
|
11383
|
89 gchar *realhostname;
|
|
90 int realport; /* port and hostname from SRV record */
|
11181
|
91 };
|
|
92
|
|
93 struct sip_connection {
|
|
94 int fd;
|
|
95 gchar *inbuf;
|
|
96 int inbuflen;
|
|
97 int inbufused;
|
|
98 int inputhandler;
|
|
99 };
|
|
100
|
|
101 struct transaction;
|
|
102
|
|
103 typedef gboolean (*TransCallback) (struct simple_account_data *, struct sipmsg *, struct transaction *);
|
|
104
|
|
105 struct transaction {
|
|
106 time_t time;
|
|
107 int retries;
|
|
108 int transport; // 0 = tcp, 1 = udp
|
|
109 int fd;
|
|
110 gchar *cseq;
|
|
111 struct sipmsg *msg;
|
|
112 TransCallback callback;
|
|
113 };
|
|
114
|
|
115 #endif /* _GAIM_SIMPLE_H */
|