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;
|
11424
|
55 gchar *target;
|
11181
|
56 int nc;
|
|
57 HASHHEX HA1;
|
11346
|
58 int retries;
|
11181
|
59 };
|
|
60
|
|
61 struct simple_account_data {
|
|
62 GaimConnection *gc;
|
|
63 gchar *servername;
|
|
64 gchar *username;
|
|
65 gchar *password;
|
|
66 int fd;
|
|
67 int cseq;
|
|
68 time_t reregister;
|
|
69 time_t republish;
|
|
70 int registerstatus; // 0 nothing, 1 first registration send, 2 auth received, 3 registered
|
|
71 struct sip_auth registrar;
|
|
72 struct sip_auth proxy;
|
|
73 int listenfd;
|
|
74 int listenport;
|
11409
|
75 int listenpa;
|
11181
|
76 gchar *ip;
|
|
77 gchar *status;
|
|
78 GHashTable *buddies;
|
|
79 guint registertimeout;
|
11194
|
80 guint resendtimeout;
|
11181
|
81 int connecting;
|
|
82 GaimAccount *account;
|
|
83 gchar *sendlater;
|
|
84 GSList *transactions;
|
|
85 GSList *watcher;
|
|
86 GSList *openconns;
|
11189
|
87 gboolean udp;
|
|
88 struct sockaddr_in serveraddr;
|
11194
|
89 int registerexpire;
|
11383
|
90 gchar *realhostname;
|
|
91 int realport; /* port and hostname from SRV record */
|
11181
|
92 };
|
|
93
|
|
94 struct sip_connection {
|
|
95 int fd;
|
|
96 gchar *inbuf;
|
|
97 int inbuflen;
|
|
98 int inbufused;
|
|
99 int inputhandler;
|
|
100 };
|
|
101
|
|
102 struct transaction;
|
|
103
|
|
104 typedef gboolean (*TransCallback) (struct simple_account_data *, struct sipmsg *, struct transaction *);
|
|
105
|
|
106 struct transaction {
|
|
107 time_t time;
|
|
108 int retries;
|
|
109 int transport; // 0 = tcp, 1 = udp
|
|
110 int fd;
|
|
111 gchar *cseq;
|
|
112 struct sipmsg *msg;
|
|
113 TransCallback callback;
|
|
114 };
|
|
115
|
|
116 #endif /* _GAIM_SIMPLE_H */
|