annotate src/gaim-socket.h @ 4617:858979ab3867

[gaim-migrate @ 4908] Big Changes: -Rewrote some of the perl stuff so perl scripts can change a few of their parameters -Receiving a file with AIM over oscar works pretty well Now, the "nitty gritty": Very minor change to prefs.c: In the plugins details tab, I changed "URL" to "Web Site." I was just going to fix the tabbing, but silvestrij suggested changing it to "Web site," and I thought that sounded good. I think it fits better, too. I dunno, maybe that's just me. "Get Capabilities" has stopped working for some reason. I'm just going to blame AOL. It's really not important anyway, and some people wanted it taken off. It is now #ifdef 0'ed out. I'll remove it completely if it continues to no longer function. I took out a few plugin_event calls from oscar.c and put them in core code. "event_error" should be, uh, "evented" when there is an error signing on. Hopefully no one was using this. It's really pretty useless. The parameter is now the reason for not being able to connect rather than the archaic toc error code. I screwed around with how perl functions are called some. There was way the hell too much malloc'ing going on here. I think all in all it's an improvement, though I'm still not a big fan of how changes to parameters propagate to the actual memory. I really think it would be nice if the perl stuff was made into a C plugin. It's just so much cleaner. Especially if someone wanted to write, say, a python or tcl interpreter. That's how xchat2 does it. I just think that would be really slick. Like butter. Or ice. Very unlike Velcro. I added a "Change Password" Protocol Action for ICQ over oscar. This was really pretty easy. I'd like to thank my housemate Andrew for complaining a lot that having to use Windows ICQ to change his password was a pain. I rewrote a lot of the oscar file transfer stuff to use Christian's new xfer interface. This involved moving a few functions from ft.c to im.c, where they belong. I also removed all the #if 0'ed getfile functions. I'll be rewritting them soonish. Receiving a file should work perfectly, aside from maybe a small memleak when stuff is canceled. Sending a file is currently disabled. No ETA on when I'll have that working. I renamed pretty much all of the functions in im.c so they have kind of a scheme now. They should all be aim_im_bleh, since "im" is the family name. There comes a time when you must break the crap out of any clients that might be using libfaim in order to make stuff cleaner. Maybe. I got rid of the snac destructor stuff for now. I'll probably add it back later. I wasn't entirely comfortable with how it was done. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 26 Feb 2003 05:01:37 +0000
parents 3da42b64304e
children fa6395637e2c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3478
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
1 /*
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
2 * gaim-remote
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
3 *
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
4 * Copyright (C) 2002, Sean Egan <bj91704@binghamton.edu>
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
5 *
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
6 * This program is free software; you can redistribute it and/or modify
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
7 * it under the terms of the GNU General Public License as published by
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
8 * the Free Software Foundation; either version 2 of the License, or
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
9 * (at your option) any later version.
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
10 *
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
11 * This program is distributed in the hope that it will be useful,
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
14 * GNU General Public License for more details.
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
15 *
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
16 * You should have received a copy of the GNU General Public License
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
17 * along with this program; if not, write to the Free Software
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
19 *
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
20 */
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
21
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
22 #ifndef _GAIM_SOCKET_H_
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
23 #define _GAIM_SOCKET_H_
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
24
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
25 struct gaim_cui_packet {
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
26 guchar type;
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
27 guchar subtype;
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
28 guint32 length;
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
29 char *data;
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
30 };
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
31
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
32
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
33 void cui_send_packet (int fd, struct gaim_cui_packet *p);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
34 gint gaim_connect_to_session(gint session);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
35 gboolean gaim_session_exists(int sess);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
36
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
37 struct gaim_cui_packet *cui_packet_new(guchar type, guchar subtype);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
38 void cui_packet_free(struct gaim_cui_packet *p);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
39 void cui_packet_append_string(struct gaim_cui_packet *p, char *str);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
40 void cui_packet_append_char(struct gaim_cui_packet *p, char c);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
41 void cui_packet_append_raw(struct gaim_cui_packet *p, char *str, int len);
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
42
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
43
3da42b64304e [gaim-migrate @ 3532]
Sean Egan <seanegan@gmail.com>
parents:
diff changeset
44 #endif /* _GAIM_SOCKET_H_ */