summaryrefslogtreecommitdiff
path: root/wocky/wocky-jabber-auth.c
AgeCommit message (Collapse)AuthorFilesLines
2012-10-31Use wocky_stanza_extract_stream_error() more widelyWill Thompson1-7/+2
2012-04-04add missing config.h includesGuillaume Desmottes1-0/+3
2012-02-06Namespace debug flags.Will Thompson1-1/+1
For better or worse, we expose these to applications, so we should namespace them. (This isn't purely theoretical: the names clash with the same ones in Gibber within Salut.)
2012-02-06Move most of debug.h to debug-internal.hWill Thompson1-1/+1
Gabble uses a couple of bits of this API to turn on a little bit of Wocky's debug output for the purposes of the D-Bus debugging interface, so making debug.h internal-only is not going to fly. However, most of it really is internal-only.
2012-02-06Include foo-enumtypes.h from each foo.hWill Thompson1-1/+0
I think it's reasonable to assume that importing the header which gives you WockyXmppError should also give you WOCKY_TYPE_XMPP_ERROR.
2011-06-09Legacy auth: document jabberd 1.4 workaroundWill Thompson1-0/+5
While debugging a completely unrelated issue, I was pretty surprised to see that the username was included in the initial get. Some git archaeology turned up the reason. So let's document this in the code and in the regression test.
2011-03-01auth: Remove unneeded assignments and variables.Will Thompson1-4/+0
These were found by the excellent clang --analyze.
2010-11-15auth-registry: add a namespace to auth mechanism constantsJonny Lamb1-2/+2
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
2010-10-04GSimpleAsyncResult source tags should be _asyncNicolas Dufresne1-2/+2
This makes Wocky closer to GAsyncResult conventions by using the _async function as source tag instead of _finish. (Bug #26770)
2010-09-14jabber-auth: use the GCancellable if it's availableCosimo Cecchi1-4/+13
2010-07-16Don't leak if start_auth() fails.Will Thompson1-1/+1
2010-06-11Squash warnings about uninitialized GError *sWill Thompson1-4/+2
2010-06-08Properly use is_secure argument in wocky_auth_registry_start_auth_async.Eitan Isaacson1-1/+5
2010-05-19Call wocky_auth_registry_failure in auth_fail functions and not in _finish.Eitan Isaacson1-14/+9
2010-05-19Added virtual public method wocky_auth_registry_failureEitan Isaacson1-1/+11
2010-05-19Made new struct for holding initial auth data (mechanism and initial response).Eitan Isaacson1-9/+7
This further seals the base class and allows subclasses to override regardless of what obj->handler is pointing at.
2010-05-07Use wocky_xmpp_stream_error_from_node for parsing stream errors.Eitan Isaacson1-19/+8
2010-05-07Make mechanism names preprocessor macros.Eitan Isaacson1-4/+2
2010-05-07Cleaned up stream_error in both wocky-sasl-auth.c wocky-jabber-auth.c.Eitan Isaacson1-22/+14
2010-05-07rename sasl debug flag to authEitan Isaacson1-1/+1
2010-05-07Added WockyJabberAuth, WockyJabberAuthPassword and WockyJabberAuthDigest.Eitan Isaacson1-0/+672