Mercurial > pidgin
comparison src/protocols/oscar/rxhandlers.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 | 2532f1192da3 |
children | a964972cb361 |
comparison
equal
deleted
inserted
replaced
4616:767093a2ddaf | 4617:858979ab3867 |
---|---|
537 */ | 537 */ |
538 | 538 |
539 if (cur->handled) | 539 if (cur->handled) |
540 continue; | 540 continue; |
541 | 541 |
542 /* | 542 if (cur->hdrtype == AIM_FRAMETYPE_FLAP) { |
543 * This is a debugging/sanity check only and probably | 543 if (cur->hdr.flap.type == 0x01) { |
544 * could/should be removed for stable code. | 544 cur->handled = aim_callhandler_noparam(sess, cur->conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_FLAPVER, cur); /* XXX use consumenonsnac */ |
545 */ | 545 continue; |
546 if (((cur->hdrtype == AIM_FRAMETYPE_OFT) && | 546 |
547 (cur->conn->type != AIM_CONN_TYPE_RENDEZVOUS)) || | 547 } else if (cur->hdr.flap.type == 0x02) { |
548 ((cur->hdrtype == AIM_FRAMETYPE_FLAP) && | 548 if ((cur->handled = consumesnac(sess, cur))) |
549 (cur->conn->type == AIM_CONN_TYPE_RENDEZVOUS))) { | 549 continue; |
550 faimdprintf(sess, 0, "rxhandlers: incompatible frame type %d on connection type 0x%04x\n", cur->hdrtype, cur->conn->type); | 550 |
551 cur->handled = 1; | 551 } else if (cur->hdr.flap.type == 0x04) { |
552 continue; | 552 cur->handled = negchan_middle(sess, cur); |
553 } | 553 continue; |
554 | 554 |
555 if (cur->conn->type == AIM_CONN_TYPE_RENDEZVOUS) { | 555 } else if (cur->hdr.flap.type == 0x05) { |
556 if (cur->hdrtype != AIM_FRAMETYPE_OFT) { | 556 |
557 faimdprintf(sess, 0, "internal error: non-OFT frames on OFT connection\n"); | 557 } |
558 cur->handled = 1; /* get rid of it */ | 558 |
559 } else { | 559 } else if (cur->hdrtype == AIM_FRAMETYPE_OFT) { |
560 if (cur->conn->type == AIM_CONN_TYPE_RENDEZVOUS) { | |
560 aim_rxdispatch_rendezvous(sess, cur); | 561 aim_rxdispatch_rendezvous(sess, cur); |
561 cur->handled = 1; | 562 cur->handled = 1; |
563 continue; | |
564 | |
565 } else if (cur->conn->type == AIM_CONN_TYPE_LISTENER) { | |
566 /* not possible */ | |
567 faimdprintf(sess, 0, "rxdispatch called on LISTENER connection!\n"); | |
568 cur->handled = 1; | |
569 continue; | |
562 } | 570 } |
563 continue; | |
564 } | 571 } |
565 | 572 |
566 if (cur->conn->type == AIM_CONN_TYPE_RENDEZVOUS_OUT) { | |
567 /* not possible */ | |
568 faimdprintf(sess, 0, "rxdispatch called on RENDEZVOUS_OUT connection!\n"); | |
569 cur->handled = 1; | |
570 continue; | |
571 } | |
572 | |
573 if (cur->hdr.flap.type == 0x01) { | |
574 | |
575 cur->handled = aim_callhandler_noparam(sess, cur->conn, AIM_CB_FAM_SPECIAL, AIM_CB_SPECIAL_FLAPVER, cur); /* XXX use consumenonsnac */ | |
576 | |
577 continue; | |
578 | |
579 } else if (cur->hdr.flap.type == 0x02) { | |
580 | |
581 if ((cur->handled = consumesnac(sess, cur))) | |
582 continue; | |
583 | |
584 } else if (cur->hdr.flap.type == 0x04) { | |
585 | |
586 cur->handled = negchan_middle(sess, cur); | |
587 continue; | |
588 | |
589 } else if (cur->hdr.flap.type == 0x05) | |
590 ; | |
591 | |
592 if (!cur->handled) { | 573 if (!cur->handled) { |
593 consumenonsnac(sess, cur, 0xffff, 0xffff); /* last chance! */ | 574 consumenonsnac(sess, cur, 0xffff, 0xffff); /* last chance! */ |
594 cur->handled = 1; | 575 cur->handled = 1; |
595 } | 576 } |
596 } | 577 } |