Overview
Comment: | Remove dependency on libresolv |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d6978b56f0125dc404d9aee11dc4cc8f |
User & Date: | js on 2018-11-05 00:14:15 |
Other Links: | manifest | tags |
Context
2018-11-05
| ||
21:22 | Modernize coding style check-in: 180bf3d08b user: js tags: trunk | |
00:14 | Remove dependency on libresolv check-in: d6978b56f0 user: js tags: trunk | |
2018-11-04
| ||
23:01 | Fix SCRAM auth check-in: 73157b0bcd user: js tags: trunk | |
Changes
Modified configure.ac from [4953692245] to [e22c5dc207].
︙ | |||
44 45 46 47 48 49 50 | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | AC_ARG_ENABLE(static, AS_HELP_STRING([--enable-static], [build static library])) AS_IF([test x"$enable_static" = x"yes" -o x"$enable_shared" = x"no"], [ AC_PATH_TOOL(AR, ar) AC_PROG_RANLIB AC_SUBST(OBJXMPP_STATIC_LIB, "libobjxmpp.a") ]) |
︙ |
Modified src/Makefile from [35d31a672d] to [c878fa6e9c].
︙ | |||
22 23 24 25 26 27 28 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | - | XMPPMessage.m \ XMPPMulticastDelegate.m \ XMPPPLAINAuth.m \ XMPPPresence.m \ XMPPRoster.m \ XMPPRosterItem.m \ XMPPSCRAMAuth.m \ |
︙ |
Modified src/XMPPConnection.h from [883bb55bc1] to [abb0306b65].
1 | 1 2 3 4 5 6 7 8 9 | - + | /* |
︙ | |||
112 113 114 115 116 117 118 | 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | - - - | * @param connection The connection that was closed */ - (void)connectionWasClosed: (XMPPConnection *)connection; /*! * @brief This callback is called when the connection threw an exception. * |
︙ | |||
268 269 270 271 272 273 274 | 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | - - - - - - - - - - - + - - + | /*! * @brief Removes the specified delegate. * * @param delegate The delegate to remove */ - (void)removeDelegate: (id <XMPPConnectionDelegate>)delegate; |
︙ |
Modified src/XMPPConnection.m from [224a0258a2] to [9754b2ecb4].
1 | 1 2 3 4 5 6 7 8 9 | - + | /* |
︙ | |||
37 38 39 40 41 42 43 | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | - | #import <ObjOpenSSL/SSLInvalidCertificateException.h> #import <ObjOpenSSL/X509Certificate.h> #import <ObjFW/OFInvalidArgumentException.h> #import "XMPPConnection.h" #import "XMPPCallback.h" |
︙ | |||
80 81 82 83 84 85 86 | 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | - (void)XMPP_sendSession; - (void)XMPP_handleSessionForConnection: (XMPPConnection *)connection IQ: (XMPPIQ *)IQ; - (OFString *)XMPP_IDNAToASCII: (OFString *)domain; - (XMPPMulticastDelegate *)XMPP_delegates; @end |
︙ | |||
312 313 314 315 316 317 318 | 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 | + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - + + + + - - - - - - + - - + - - - - - - - + - - - - - - + - - - - - + - - + - - - - - - - - - - - - + + + + + - - - - - - - - - | } } else _password = nil; [old release]; } - (void)XMPP_socketDidConnect: (OFTCPSocket *)socket context: (OFArray *)nextSRVRecords exception: (id)exception { char *buffer; if (exception != nil) { if (nextSRVRecords != nil) { [self XMPP_tryNextSRVRecord: nextSRVRecords]; return; } [_delegates broadcastSelector: @selector(connection:didThrowException:) withObject: self withObject: exception]; return; } [self XMPP_startStream]; buffer = [self allocMemoryWithSize: BUFFER_LENGTH]; [_socket asyncReadIntoBuffer: buffer length: BUFFER_LENGTH target: self selector: @selector(XMPP_stream:didReadIntoBuffer: length:exception:) context: nil]; } - (void)XMPP_tryNextSRVRecord: (OFArray *)SRVRecords { OFSRVDNSResourceRecord *record = [SRVRecords objectAtIndex: 0]; SRVRecords = [SRVRecords objectsInRange: of_range(1, [SRVRecords count] - 1)]; if ([SRVRecords count] == 0) SRVRecords = nil; [_socket asyncConnectToHost: [record target] port: [record port] target: self selector: @selector(XMPP_socketDidConnect: context:exception:) context: SRVRecords]; } - (void)XMPP_resolver: (OFDNSResolver *)resolver didResolveDomainName: (OFString *)domainName answerRecords: (OFDictionary *)answerRecords authorityRecords: (OFDictionary *)authorityRecords additionalRecords: (OFDictionary *)additionalRecords context: (OFString *)domainToASCII exception: (id)exception { OFMutableArray *records = [OFMutableArray array]; if (exception != nil) { [_delegates broadcastSelector: @selector(connection:didThrowException:) withObject: self withObject: exception]; return; } for (OF_KINDOF(OFDNSResourceRecord *) record in [answerRecords objectForKey: domainName]) if ([record isKindOfClass: [OFSRVDNSResourceRecord class]]) [records addObject: record]; /* TODO: Sort records */ [records makeImmutable]; if ([records count] == 0) { /* Fall back to A / AAA record. */ [_socket asyncConnectToHost: domainToASCII port: _port target: self selector: @selector(XMPP_socketDidConnect: context:exception:) context: nil]; return; } [self XMPP_tryNextSRVRecord: records]; } |
︙ | |||
417 418 419 420 421 422 423 | 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 | - + | [_oldParser release]; [_oldElementBuilder release]; _oldParser = nil; _oldElementBuilder = nil; } |
︙ | |||
454 455 456 457 458 459 460 | 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 | - + | _oldParser = nil; _oldElementBuilder = nil; [_socket asyncReadIntoBuffer: buffer length: BUFFER_LENGTH target: self |
︙ | |||
923 924 925 926 927 928 929 | 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 | - - + | /* Stream restart */ [self XMPP_startStream]; return; } if ([[element name] isEqual: @"failure"]) { |
︙ |
Deleted src/XMPPSRVLookup.h version [72a7f4de73].
Deleted src/XMPPSRVLookup.m version [bed03f8f6f].
Modified tests/test.m from [a93ba6280b] to [654249e42f].
︙ | |||
122 123 124 125 126 127 128 | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | - + | } [conn setDomain: [arguments objectAtIndex: 0]]; [conn setUsername: [arguments objectAtIndex: 1]]; [conn setPassword: [arguments objectAtIndex: 2]]; [conn setResource: @"ObjXMPP"]; |
︙ |