Mercurial > pidgin.yaz
annotate doc/cmd-signals.dox @ 27243:7054f810b0f9
Check in code that connects to oscar using clientLogin. This is the
authentication scheme they've publically documented. We still use
the old MD5-style login as the default, but you can optionally try
this out by checking a check box on the advanced tab of your oscar
account.
Functionally everything is supposed to be the same. However, for
some reason users with Mobile IM forwarding turned on don't show
up online and can't be messaged. Not sure why.
Using clientLogin DOES make it easier for AOL to track us. And yes,
it probably makes it easier for AOL to block us, too. But I don't
believe they want to do that. I believe they're trying to keep their
network open, and I think we should appreciate that and try to work
with them. We're not just some small open source project that slips
under the radar unnoticed anymore.
It's good to have options, right?
None of this code was taken from anywhere (outside of libpurple). I
wrote it all from scratch (and took a few bits from other places in
libpurple). I did use the documentation on http://dev.aol.com/aim ,
but I don't believe that affects us from a licensing standpoint in
any way. If you disagree we should talk about it on the devel
mailing list.
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Tue, 23 Jun 2009 18:20:12 +0000 |
parents | 1ca49b349037 |
children |
rev | line source |
---|---|
23416
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
1 /** @page cmd-signals Command Signals |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
2 @signals |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
3 @signal cmd-added |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
4 @signal cmd-removed |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
5 @endsignals |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
6 |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
7 @see cmds.h |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
8 |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
9 @signaldef cmd-added |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
10 @signalproto |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
11 void (*cmd_added)(const char *command, PurpleCmdPriority priority, |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
12 PurpleCmdFlag flag); |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
13 @endsignalproto |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
14 @signaldesc |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
15 Emitted when a new command is added. |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
16 @param command The new command. |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
17 @param priority The priority of the new command. |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
18 @param flag The command flags. |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
19 @endsignaldef |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
20 |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
21 @signaldef cmd-removed |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
22 @signalproto |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
23 void (*cmd_removed)(const char *command); |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
24 @endsignalproto |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
25 @signaldesc |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
26 Emitted when a command is removed. |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
27 @param command The removed command. |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
28 @endsignaldef |
1ca49b349037
Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff
changeset
|
29 */ |