Mercurial > pidgin
annotate src/protocols/simple/simple.h @ 12466:31e4eb57cc86
[gaim-migrate @ 14776]
Patch sent to gaim-devel by Pradyumna Sampath
Corresponding to SF #1378865:
'In the menu:
"Accounts - Enable Account" menu item. Gives a list of
accounts that are *not* online. Shouldnt this be greyed
to indicate so ? If you think it should be here is a
patch that does the same , you may use it if you want to.'
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Mon, 12 Dec 2005 17:32:32 +0000 |
| parents | cfc808463763 |
| children | c5acba513363 |
| rev | line source |
|---|---|
| 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> | |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12196
diff
changeset
|
28 |
|
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12196
diff
changeset
|
29 #include <cipher.h> |
| 11181 | 30 #include <prpl.h> |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12196
diff
changeset
|
31 |
| 11181 | 32 #include "sipmsg.h" |
| 33 | |
| 34 #define SIMPLE_BUF_INC 1024 | |
| 35 | |
| 36 struct sip_dialog { | |
| 37 gchar *ourtag; | |
| 38 gchar *theirtag; | |
| 39 gchar *callid; | |
| 40 }; | |
| 41 | |
| 42 struct simple_watcher { | |
| 43 gchar *name; | |
| 44 time_t expire; | |
| 45 struct sip_dialog dialog; | |
| 46 }; | |
| 47 | |
| 48 struct simple_buddy { | |
| 49 gchar *name; | |
| 50 time_t resubscribe; | |
| 51 }; | |
| 52 | |
| 53 struct sip_auth { | |
| 11346 | 54 int type; /* 1 = Digest / 2 = NTLM */ |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12196
diff
changeset
|
55 gchar *nonce; |
|
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12196
diff
changeset
|
56 gchar *realm; |
| 11424 | 57 gchar *target; |
| 11181 | 58 int nc; |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12196
diff
changeset
|
59 gchar *digest_session_key; |
| 11346 | 60 int retries; |
| 11181 | 61 }; |
| 62 | |
| 63 struct simple_account_data { | |
| 64 GaimConnection *gc; | |
| 65 gchar *servername; | |
| 66 gchar *username; | |
| 67 gchar *password; | |
| 68 int fd; | |
| 69 int cseq; | |
| 70 time_t reregister; | |
| 71 time_t republish; | |
|
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11424
diff
changeset
|
72 int registerstatus; /* 0 nothing, 1 first registration send, 2 auth received, 3 registered */ |
| 11181 | 73 struct sip_auth registrar; |
| 74 struct sip_auth proxy; | |
| 75 int listenfd; | |
| 76 int listenport; | |
| 11409 | 77 int listenpa; |
| 11181 | 78 gchar *ip; |
| 79 gchar *status; | |
| 80 GHashTable *buddies; | |
| 81 guint registertimeout; | |
| 11194 | 82 guint resendtimeout; |
| 11181 | 83 int connecting; |
| 84 GaimAccount *account; | |
| 85 gchar *sendlater; | |
| 12196 | 86 gchar *regcallid; |
| 11181 | 87 GSList *transactions; |
| 88 GSList *watcher; | |
| 89 GSList *openconns; | |
| 11189 | 90 gboolean udp; |
| 91 struct sockaddr_in serveraddr; | |
| 11194 | 92 int registerexpire; |
| 11383 | 93 gchar *realhostname; |
| 94 int realport; /* port and hostname from SRV record */ | |
| 11181 | 95 }; |
| 96 | |
| 97 struct sip_connection { | |
| 98 int fd; | |
| 99 gchar *inbuf; | |
| 100 int inbuflen; | |
| 101 int inbufused; | |
| 102 int inputhandler; | |
| 103 }; | |
| 104 | |
| 105 struct transaction; | |
| 106 | |
| 107 typedef gboolean (*TransCallback) (struct simple_account_data *, struct sipmsg *, struct transaction *); | |
| 108 | |
| 109 struct transaction { | |
| 110 time_t time; | |
| 111 int retries; | |
|
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11424
diff
changeset
|
112 int transport; /* 0 = tcp, 1 = udp */ |
| 11181 | 113 int fd; |
| 114 gchar *cseq; | |
| 115 struct sipmsg *msg; | |
| 116 TransCallback callback; | |
| 117 }; | |
| 118 | |
| 119 #endif /* _GAIM_SIMPLE_H */ |
