about summary refs log tree commit diff stats
path: root/src/stanza.c
Commit message (Expand)AuthorAgeFilesLines
* Tidied up memory allocation in capabilitiesJames Booth2013-01-231-0/+20
* Fixed some memory leaks in capabilitiesJames Booth2013-01-231-2/+2
* Added software version capability and iq responseJames Booth2013-01-211-0/+28
* Respond to iq requests for capabilitiesJames Booth2013-01-211-0/+28
* Added _handle_presence_capsJames Booth2013-01-201-2/+21
* Added check for caps in stanzaJames Booth2013-01-201-0/+16
* First implementation of sha1 generation from stanzaJames Booth2013-01-201-0/+54
* Moved processing of caps str to stanza.cJames Booth2013-01-201-3/+16
* Send diso#info request if capabilities not cachedJames Booth2013-01-201-0/+21
* Added retrieval of caps string from presenceJames Booth2013-01-191-0/+16
* Updated copyrightJames Booth2013-01-111-1/+1
* Handle idle time from contactsJames Booth2012-12-091-0/+32
* Fixed workaround for old server self room presence checkJames Booth2012-11-191-0/+1
* Handle legacy delayed messages in chat roomsJames Booth2012-11-191-1/+15
* Handle nick changes from other usersJames Booth2012-11-181-0/+108
* Allow nick change in chat roomJames Booth2012-11-181-0/+11
* Support legacy delayed delivery (XEP-0091) as well as XEP-0203James Booth2012-11-181-0/+32
* introduce priority supportDmitry Podgorny2012-11-131-1/+1
* Added function to create room jid from room and nickJames Booth2012-11-101-7/+3
* Moved ping iq creation to stanzaJames Booth2012-11-101-0/+29
* Moved roster iq creation to stanzaJames Booth2012-11-101-0/+18
* Renamed stanza creationJames Booth2012-11-101-2/+2
* Moved update presence handler creation to stanza moduleJames Booth2012-11-101-0/+34
* Moved chat room leave presence creation to stanza moduleJames Booth2012-11-091-2/+4
* Fixed leaving chat roomJames Booth2012-11-091-0/+15
* Moved room join stanza creationJames Booth2012-11-091-0/+21
* Added stanza constantsJames Booth2012-11-091-8/+9
* Use stanza module to create groupchat messagesJames Booth2012-11-081-1/+1
* Added xml escaping to stanza moduleJames Booth2012-11-081-1/+7
* Added function to create message stanzasJames Booth2012-11-081-7/+37
* Added stanza module for basic stanza handlingJames Booth2012-11-081-0/+43
a id='n342' href='#n342'>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 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540