comparison src/protocols/oscar/rxqueue.c @ 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 7ba5f2e13ee8
children 2d9f7d2e3558
comparison
equal deleted inserted replaced
4616:767093a2ddaf 4617:858979ab3867
162 { 162 {
163 aim_frame_t *newrx; 163 aim_frame_t *newrx;
164 fu16_t payloadlen; 164 fu16_t payloadlen;
165 165
166 if (!sess || !conn) 166 if (!sess || !conn)
167 return -1; 167 return -EINVAL;
168 168
169 if (conn->fd == -1) 169 if (conn->fd == -1)
170 return -1; /* it's an aim_conn_close()'d connection */ 170 return -1; /* it's an aim_conn_close()'d connection */
171 171
172 if (conn->fd < 3) /* can happen when people abuse the interface */ 172 if (conn->fd < 3) /* can happen when people abuse the interface */
174 174
175 if (conn->status & AIM_CONN_STATUS_INPROGRESS) 175 if (conn->status & AIM_CONN_STATUS_INPROGRESS)
176 return aim_conn_completeconnect(sess, conn); 176 return aim_conn_completeconnect(sess, conn);
177 177
178 if (!(newrx = (aim_frame_t *)calloc(sizeof(aim_frame_t), 1))) 178 if (!(newrx = (aim_frame_t *)calloc(sizeof(aim_frame_t), 1)))
179 return -1; 179 return -ENOMEM;
180 180
181 /* 181 /*
182 * Rendezvous (client to client) connections do not speak FLAP, so this 182 * Rendezvous (client to client) connections do not speak FLAP, so this
183 * function will break on them. 183 * function will break on them.
184 */ 184 */
185 if (conn->type == AIM_CONN_TYPE_RENDEZVOUS) 185 if (conn->type == AIM_CONN_TYPE_RENDEZVOUS)
186 payloadlen = aim_get_command_rendezvous(sess, conn, newrx); 186 payloadlen = aim_get_command_rendezvous(sess, conn, newrx);
187 else if (conn->type == AIM_CONN_TYPE_RENDEZVOUS_OUT) { 187 else if (conn->type == AIM_CONN_TYPE_LISTENER) {
188 faimdprintf(sess, 0, "AIM_CONN_TYPE_RENDEZVOUS_OUT on fd %d\n", conn->fd); 188 faimdprintf(sess, 0, "AIM_CONN_TYPE_LISTENER on fd %d\n", conn->fd);
189 free(newrx); 189 free(newrx);
190 return -1; 190 return -1;
191 } else 191 } else
192 payloadlen = aim_get_command_flap(sess, conn, newrx); 192 payloadlen = aim_get_command_flap(sess, conn, newrx);
193 193