about summary refs log tree commit diff stats
path: root/src/xmpp/stanza.h
Commit message (Expand)AuthorAgeFilesLines
* Update copyrightJames Booth2018-01-211-1/+1
* Update CopyrightJames Booth2017-01-281-1/+1
* Use hash table for bookmarksJames Booth2016-08-211-0/+2
* Use libstrophe xmpp_presence_new convenience functionJames Booth2016-08-201-2/+0
* Replace stanza_create_message with libstrophe convenience functionsJames Booth2016-08-201-3/+0
* Move caps_create -> stanza_create_caps_from_query_elementJames Booth2016-08-141-0/+1
* Move caps_create_sha1_str -> stanza_create_caps_sha1_from_queryJames Booth2016-08-141-0/+1
* Move caps_create_query_response_stanza -> stanza_create_caps_query_elementJames Booth2016-08-131-0/+2
* Tidy headersJames Booth2016-07-241-0/+1
* Update GPL link in headersJames Booth2016-07-241-1/+1
* Tidy xmpp headersJames Booth2016-05-041-4/+0
* Add /blocked commandJames Booth2016-05-011-0/+6
* Define stanza's attributes as const char*Dmitry Podgorny2016-04-271-3/+3
* Implement XEP-0363: HTTP File UploadDominik Heidler2016-04-261-0/+13
* Removed #AX_PREFIX_CONFIG_HJames Booth2016-03-311-3/+3
* Merge branch 'master' into plugins-cJames Booth2016-02-141-1/+1
|\
| * Updated copyrightJames Booth2016-02-141-1/+1
* | Added C plugin code from plugins branchJames Booth2016-02-141-3/+3
|/
* Applied coding style to src/xmpp/James Booth2015-10-261-80/+69
* WIP: Added last activity request and responseJames Booth2015-09-291-0/+3
* Check for libmesode, fall back to libstropheJames Booth2015-09-211-0/+8
* Add no-copy and no-store hints to OTR messagesSam Whited2015-07-011-0/+3
* WIP fix for #516, needs memory cleanupJames Booth2015-06-291-1/+1
* Merge branch 'master' into pgpJames Booth2015-03-291-1/+2
|\
| * Added password to direct invitesJames Booth2015-03-291-1/+2
* | Merge branch 'master' into pgpJames Booth2015-03-291-0/+2
|\|
| * Added check members only room to send mediated invitesJames Booth2015-03-281-0/+2
* | Send encrypted messagesJames Booth2015-03-241-0/+1
* | Added pgpkeyid account setting, send signed presenceJames Booth2015-03-231-0/+1
|/
* Show message received text for receiptsJames Booth2015-03-111-1/+1
* Added basic delivery receiptsJames Booth2015-03-111-2/+6
* Send private carbons element with message when encryptedJames Booth2015-03-101-1/+1
* Merge remote-tracking branch 'oliverlemoal/xep-0280' into xep-0280James Booth2015-03-081-0/+8
|\
| * Add XEP-0280 supportOlivier LE MOAL2015-02-101-0/+8
* | Updated copyrightJames Booth2015-02-101-1/+1
|/
* Use resource in chat sessionsJames Booth2015-01-041-1/+1
* Refactored parsing capsJames Booth2014-11-261-4/+9
* Refactored available presence handlerJames Booth2014-11-261-0/+17
* Show occupants role/affiliation changesJames Booth2014-10-181-2/+2
* Added jid autocomplete for affiliation commandsJames Booth2014-10-061-2/+2
* Implemented setting and listing rolesJames Booth2014-10-061-0/+4
* Implemented /room kick commandJames Booth2014-10-051-0/+9
* Added /room kick commandJames Booth2014-10-051-0/+2
* Added /room subject commandJames Booth2014-10-051-0/+1
* Implemented setting affiliation and listing affiliationsJames Booth2014-10-041-4/+4
* Allow adding and removing room ownersJames Booth2014-10-041-0/+5
* wip - refactoring capabilitiesJames Booth2014-09-191-0/+2
* Implemented /room config submit for saving room configurationJames Booth2014-09-101-0/+2
* Parse data form for room configurationJames Booth2014-09-041-10/+1
* Added /room config edit and /room config cancelJames Booth2014-09-041-0/+4
> 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 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861