pidgin/pidgin

Make all irc login time commands skip the rate limiter.
release-2.x.y
2022-04-27, Gary Kramlich
3230f4408394
Make all irc login time commands skip the rate limiter.

Most networks don't rate limit during the login process but will time you out
if you take too long. Running through the SASL mechansism on Freenode with the
rate limiter was causing us to time out. The ideal solution is to handle the
908 reply and use those mechanisms directly, but I ran into some issues and
this is useful on its own.

Testing Done:
Connected to Freenode and verified we didn't time out during SASL login.

Reviewed at https://reviews.imfreedom.org/r/1391/
/** @page gtklog-signals GtkLog Signals
@signals
@signal log-displaying
@endsignals
@see gtklog.h
<hr>
@signaldef log-displaying
@signalproto
void (*log_displaying)(PidginLogViewer *viewer, PurpleLog *log);
@endsignalproto
@signaldesc
Emitted when a log is being displayed.
@param viewer The log viewer
@param log The log being displayed
@endsignaldef
*/
// vim: syntax=c.doxygen tw=75 et