Add schannel support (win32 only)

Fix a couple compile warnings.
Extend features timeout to 5 seconds.
This commit is contained in:
James Canete
2007-11-05 02:30:04 +00:00
parent f45380bb23
commit 1f453d2ecf
5 changed files with 552 additions and 7 deletions

View File

@@ -345,10 +345,10 @@ int xmpp_stanza_get_attribute_count(xmpp_stanza_t * const stanza)
}
int xmpp_stanza_get_attributes(xmpp_stanza_t * const stanza,
char **attr, int attrlen)
const char **attr, int attrlen)
{
hash_iterator_t *iter;
char *key;
const char *key;
int num = 0;
if (stanza->attributes == NULL) {