comparison src/protocols/msn/servconn.h @ 7288:ff9127038a5a

[gaim-migrate @ 7869] It doesn't completely work yet, but this is the beginnings of the MSN HTTP port 80 connect method. I don't have it set so it can be enabled, so it's harmless to commit this now, but I want a second set of eyes, and I also want to do other MSN work without dealing with hand-merging patches. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 17 Oct 2003 14:57:59 +0000
parents b7e113a59b51
children 06f57183e29f
comparison
equal deleted inserted replaced
7287:3a41c3f80228 7288:ff9127038a5a
25 #include "proxy.h" 25 #include "proxy.h"
26 26
27 typedef struct _MsnServConn MsnServConn; 27 typedef struct _MsnServConn MsnServConn;
28 28
29 #include "msg.h" 29 #include "msg.h"
30 #include "httpmethod.h"
30 31
31 typedef gboolean (*MsnServConnCommandCb)(MsnServConn *servconn, 32 typedef gboolean (*MsnServConnCommandCb)(MsnServConn *servconn,
32 const char *cmd, const char **params, 33 const char *cmd, const char **params,
33 size_t param_count); 34 size_t param_count);
34 35
47 struct _MsnServConn 48 struct _MsnServConn
48 { 49 {
49 MsnSession *session; 50 MsnSession *session;
50 51
51 gboolean connected; 52 gboolean connected;
53
54 MsnHttpMethodData *http_data;
52 55
53 char *server; 56 char *server;
54 int port; 57 int port;
55 58
56 int fd; 59 int fd;