about summary refs log tree commit diff stats
path: root/src/xmpp/capabilities.c
Commit message (Expand)AuthorAgeFilesLines
* Updated copyrightJames Booth2015-02-101-1/+1
* Removed strdup calls when creating capabilitiesJames Booth2015-02-091-7/+7
* Removed function pointersJames Booth2014-12-221-17/+8
* Store capabilities against fulljid when unsupported hashJames Booth2014-11-271-21/+72
* Set file permissions for logsJames Booth2014-10-181-0/+6
* Free caps, remove strdupJames Booth2014-09-241-1/+3
* Handle errors for /disco info requestsJames Booth2014-09-241-1/+1
* Capabilities: check for identity localeJames Booth2014-09-231-7/+55
* Reordered identity attributes in caps cache for readabilityJames Booth2014-09-231-3/+3
* Create sha-1 of own capabilities onceJames Booth2014-09-231-0/+16
* Cache capabilities to fileJames Booth2014-09-221-25/+161
* Show message when no capabilities availableJames Booth2014-09-211-2/+0
* Sort form fields for sha-1 caps hashJames Booth2014-09-211-13/+22
* Added jid->hash lookup for capabilitiesJames Booth2014-09-201-0/+24
* wip - refactoring capabilitiesJames Booth2014-09-191-51/+107
* form_get_field_by_var->form_get_form_type_fieldJames Booth2014-09-131-2/+2
* Rewrite form parserJames Booth2014-09-061-3/+5
* Created form moduleJames Booth2014-09-051-2/+3
* Added license exemption for OpenSSL to source headersJames Booth2014-08-241-0/+12
* Free string after use in sending caps responseJames Booth2014-06-151-0/+1
* Renamed sha1 functions to avoid naming clashesJames Booth2014-06-151-1/+1
* Changed to use gnutls instead of openssl for sha1 hashingJames Booth2014-05-011-15/+1
* Updated copyrightJames Booth2014-03-091-1/+1
* fixed build error when make run with -jN optionDmitry Podgorny2014-03-061-1/+1
* Bind capabilities functions in main.cJames Booth2013-12-221-2/+7
* Dynamically bind xmpp module apiJames Booth2013-12-181-4/+6
* Use git revision in development stringsJames Booth2013-09-171-0/+11
* remove octet_compareDmitry Podgorny2013-08-261-3/+3
* fixed memory leaks in various filesDmitry Podgorny2013-08-251-4/+5
* fixed memory leaksDmitry Podgorny2013-08-031-16/+16
* most FREE_SET_NULL replaced with freeDmitry Podgorny2013-08-031-9/+8
* Changed client type to 'console' as per http://xmpp.org/registrar/disco-categ...James Booth2013-06-251-1/+1
* Added disco items to features in disco info responsesJames Booth2013-03-241-0/+6
* Tidied new command output, ordered featuresJames Booth2013-02-171-3/+4
* Added ping to featuresJames Booth2013-02-171-0/+5
* Added chatstates to capabilitiesJames Booth2013-02-171-0/+6
* Added /caps commandJames Booth2013-02-171-1/+11
* Show detailed software/os information if available in capabilitiesJames Booth2013-02-051-5/+44
* Removed debug from last commitJames Booth2013-02-051-4/+0
* SHA1 now generated correctly when data form included in capsJames Booth2013-02-051-0/+5
* Fixed crash on receiving dataformJames Booth2013-02-031-2/+4
* Tidied #include'sJames Booth2013-02-021-3/+4
* Removed stanza functions from xmpp.hJames Booth2013-02-021-0/+1
* Added xmpp subdir to sourceJames Booth2013-02-021-0/+245
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 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717