Mercurial > pidgin
annotate src/protocols/simple/simple.h @ 12024:e67993da8a22
[gaim-migrate @ 14317]
I strongly suspect CruiseControl is going to yell at me for this.
A voice chat API, GUI + mediastreamer. This is what I'm using for Google Talk.
This doesn't actually do anything at all. There's no code in the Jabber plugin yet
to use this API (although it Works For Me). All it will do is compile and link.
If you're lucky.
To build this, you should install oRTP from Linphone, Speex and iLBC (also
from linphone, I believe). To not build this, ./configure --disable-vv.
Most of the configure.ac and Makefile.am hackery was lifted right out of
Linphone with a few modifications. It seems to work if you have everything
installed or if you --disable-vv. I haven't really tested not having
everything installed and not --disabling-vv.
It's kinda funky to include all of mediastreamer in the source tree like this,
but linphone doesn't build it as a separate library. I'll probably wind up
writing them a patch to build it as a .so so we can link it dynamically instead.
This code certainly isn't finished. It'll adapt as I progress on the Google code,
but it's certainly of more use here in CVS than in my personal tree.
committer: Tailor Script <tailor@pidgin.im>
| author | Sean Egan <seanegan@gmail.com> |
|---|---|
| date | Wed, 09 Nov 2005 08:07:20 +0000 |
| parents | 4669e7461968 |
| children | 2f379ed0c26b |
| 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> | |
| 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; | |
|
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11424
diff
changeset
|
70 int registerstatus; /* 0 nothing, 1 first registration send, 2 auth received, 3 registered */ |
| 11181 | 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; | |
|
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11424
diff
changeset
|
109 int transport; /* 0 = tcp, 1 = udp */ |
| 11181 | 110 int fd; |
| 111 gchar *cseq; | |
| 112 struct sipmsg *msg; | |
| 113 TransCallback callback; | |
| 114 }; | |
| 115 | |
| 116 #endif /* _GAIM_SIMPLE_H */ |
