Mercurial > pidgin
view src/protocols/msn/httpconn.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 | bcfea6c3d5c9 |
| children | 33bef17125c2 |
line wrap: on
line source
/** * @file httpconn.h HTTP connection * * gaim * * Gaim is the legal property of its developers, whose names are too numerous * to list here. Please refer to the COPYRIGHT file distributed with this * source distribution. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef _MSN_HTTPCONN_H_ #define _MSN_HTTPCONN_H_ typedef struct _MsnHttpConn MsnHttpConn; #include "servconn.h" /** * An HTTP Connection. */ struct _MsnHttpConn { MsnSession *session; /**< The MSN Session. */ MsnServConn *servconn; /**< The connection object. */ char *full_session_id; /**< The full session id. */ char *session_id; /**< The trimmed session id. */ int timer; /**< The timer for polling. */ gboolean waiting_response; /**< The flag that states if we are waiting a response from the server. */ gboolean dirty; /**< The flag that states if we should poll. */ gboolean connected; /**< The flag that states if the connection is on. */ gboolean virgin; /**< The flag that states if this connection should specify the host (not gateway) to connect to. */ char *host; /**< The HTTP gateway host. */ GList *queue; /**< The queue of data chunks to write. */ int fd; /**< The connection's file descriptor. */ int inpa; /**< The connection's input handler. */ char *rx_buf; /**< The receive buffer. */ int rx_len; /**< The receive buffer lenght. */ }; /** * Creates a new HTTP connection object. * * @param servconn The connection object. * * @return The new object. */ MsnHttpConn *msn_httpconn_new(MsnServConn *servconn); /** * Destroys an HTTP connection object. * * @param httpconn The HTTP connection object. */ void msn_httpconn_destroy(MsnHttpConn *httpconn); /** * Writes a chunk of data to the HTTP connection. * * @param servconn The server connection. * @param data The data to write. * @param size The size of the data to write. * * @return The number of bytes written. */ size_t msn_httpconn_write(MsnHttpConn *httpconn, const char *data, size_t size); /** * Connects the HTTP connection object to a host. * * @param httpconn The HTTP connection object. * @param host The host to connect to. * @param port The port to connect to. */ gboolean msn_httpconn_connect(MsnHttpConn *httpconn, const char *host, int port); /** * Disconnects the HTTP connection object. * * @param httpconn The HTTP connection object. */ void msn_httpconn_disconnect(MsnHttpConn *httpconn); #endif /* _MSN_HTTPCONN_H_ */
