* swagat mishra had this to say on [30 Aug 2010, 14:58:54 +0530]: > the link mentioned in the last mail gives the documentation for the > functions such as purple_account_set_int.i wish to know the protocol > specific parameters that i can modify using those functions(like > set_int),for example i know that i can use set_int to specify port number > for a purple account using "port" as the key and port number as > value.isthere any documentation for such keys anywhere on the pidgin > site?
You can take a look at PurplePluginProtocolInfo.protocol_options, which is a list of PurpleAccountOption's. You can inspect a PurpleAccountOption to know the name of the option (e.g. "port") in addition to its type (e.g. PURPLE_PREF_INT). This may (or may not) be enough information for what you want to do. Cheers. Sadrul > On Mon, Aug 30, 2010 at 7:35 AM, Paul Aurich <[email protected]> wrote: > > > On 2010-08-29 18:51, swagat mishra wrote: > > > as a matter of fact i am working behind a firewall that restricts > > > outgoing connections on port 5222. > > > is there any function on the public api that can help me specify the > > > below settings,instead of hard coding them in the account struct? > > > i guess account->settings must be useful but i dont how to use it,its > > > not mentioned in the documentation in detail. > > > btw,the program works fine after making the changes you suggested,thank > > > you :) > > > > All of the functions you should need are documented in the .h files (and > > online in the doxygen docs). See > > > > http://developer.pidgin.im/doxygen/dev/html/account_8h.html#ef167ce400840c19a3de476185ebde5f > > > > ~Paul _______________________________________________ [email protected] mailing list Want to unsubscribe? Use this link: http://pidgin.im/cgi-bin/mailman/listinfo/support
