Overview
Comment: | Remove redundant IDNAToASCII |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9532fc55fb5a0a2686d1ae4d67e4c503 |
User & Date: | florob@babelmonkeys.de on 2013-01-09 18:32:57 |
Other Links: | manifest | tags |
Context
2013-01-12
| ||
22:47 | Adjust to recent ObjFW changes. check-in: 9d0f61744d user: florob@babelmonkeys.de tags: trunk | |
2013-01-09
| ||
18:32 | Remove redundant IDNAToASCII check-in: 9532fc55fb user: florob@babelmonkeys.de tags: trunk | |
2013-01-08
| ||
23:36 | Make status/show/priority of XMPPPresence properties check-in: 1d031d8de7 user: florob@babelmonkeys.de tags: trunk | |
Changes
Modified src/Makefile from [e0db257764] to [f24c0b7169].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | include ../extra.mk SHARED_LIB = ${OBJXMPP_SHARED_LIB} STATIC_LIB = ${OBJXMPP_STATIC_LIB} LIB_MAJOR = 0 LIB_MINOR = 0 SRCS = XMPPAuthenticator.m \ XMPPCallback.m \ XMPPConnection.m \ XMPPExceptions.m \ XMPPEXTERNALAuth.m \ XMPPIQ.m \ XMPPJID.m \ XMPPJSONFileStorage.m \ XMPPMessage.m \ XMPPMulticastDelegate.m \ | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | include ../extra.mk SHARED_LIB = ${OBJXMPP_SHARED_LIB} STATIC_LIB = ${OBJXMPP_STATIC_LIB} LIB_MAJOR = 0 LIB_MINOR = 0 SRCS = XMPPAuthenticator.m \ XMPPCallback.m \ XMPPConnection.m \ XMPPContactManager.m \ XMPPExceptions.m \ XMPPEXTERNALAuth.m \ XMPPIQ.m \ XMPPJID.m \ XMPPJSONFileStorage.m \ XMPPMessage.m \ XMPPMulticastDelegate.m \ |
︙ | ︙ |
Modified src/XMPPConnection.m from [d405ad4653] to [cc58892fc4].
︙ | ︙ | |||
341 342 343 344 345 346 347 | if (sock != nil) @throw [OFAlreadyConnectedException exceptionWithClass: [self class]]; sock = [[OFTCPSocket alloc] init]; if (server) | | | 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | if (sock != nil) @throw [OFAlreadyConnectedException exceptionWithClass: [self class]]; sock = [[OFTCPSocket alloc] init]; if (server) [sock connectToHost: server port: port]; else { @try { SRVLookup = [XMPPSRVLookup lookupWithDomain: domainToASCII]; } @catch (id e) { } |
︙ | ︙ |