about summary refs log tree commit diff stats
path: root/src/xmpp/connection.h
Commit message (Expand)AuthorAgeFilesLines
* Wait for discovery end to publish omemo devicelist and bundlePaul Fariello2019-04-101-0/+2
* Update copyright to include 2019Michael Vetter2019-01-221-1/+1
* Move ID generation to xmpp folderMichael Vetter2018-08-301-0/+2
* Update copyrightJames Booth2018-01-211-1/+1
* Update CopyrightJames Booth2017-01-281-1/+1
* Remove status from cl_ev_presence_sendJames Booth2017-01-151-1/+0
* Use server features for account muc serviceJames Booth2016-11-201-1/+0
* Move event timeout to connection moduleJames Booth2016-07-241-0/+1
* Update GPL link in headersJames Booth2016-07-241-1/+1
* Add connection_set_disconnected()James Booth2016-05-111-4/+1
* Add connection_clear_data()James Booth2016-05-101-2/+2
* Remove connection_free_conn(), connection_free_ctx()James Booth2016-05-101-2/+0
* Add connection_shutdown()James Booth2016-05-101-1/+1
* Remove JABBER_STARTED, JABBER_UNDEFINED connection statesJames Booth2016-05-101-0/+1
* Free features on disconnectJames Booth2016-05-081-0/+1
* Use hash table for disco featuresJames Booth2016-05-081-1/+1
* Remove connection_get_disco_infos()James Booth2016-05-081-1/+0
* Rename diso_items->diso_infosJames Booth2016-05-081-1/+1
* Add connection_get_disco_info()James Booth2016-05-081-1/+2
* Add connection_item_for_feature()James Booth2016-05-081-0/+1
* Move logic to connection_set_disco_itemsJames Booth2016-05-081-1/+1
* Move conneciton initialisation to _connection_handlerJames Booth2016-05-081-2/+0
* Move disco info struct to connectionJames Booth2016-05-071-2/+5
* Move available resources to connection structJames Booth2016-05-071-1/+4
* Remove redundant tls secured functionJames Booth2016-05-061-2/+0
* Tidy connect functionJames Booth2016-05-061-1/+1
* Move connection_connectJames Booth2016-05-061-2/+2
* Rename jabber_ functionsJames Booth2016-05-061-0/+4
* Add session.cJames Booth2016-05-051-0/+60
* Renamed connection.c -> session.cJames Booth2016-05-051-61/+0
* Tidy xmpp headersJames Booth2016-05-041-6/+3
* Rename id_handler_add -> iq_id_handler_addJames Booth2016-05-021-1/+1
* Removed #AX_PREFIX_CONFIG_HJames Booth2016-03-311-3/+3
* Use one stanza handler per type (message, iq, presence)James Booth2016-03-281-0/+8
* 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-4/+4
* Check for libmesode, fall back to libstropheJames Booth2015-09-211-0/+7
* Updated copyrightJames Booth2015-02-101-1/+1
* Added license exemption for OpenSSL to source headersJames Booth2014-08-241-0/+12
* Updated copyrightJames Booth2014-03-091-1/+1
* Moved connection_error_handler to _presence_error_handlerJames Booth2014-01-271-2/+0
* Added simple mock test, refactored rosterJames Booth2013-12-141-2/+2
* fixed crash in stanza_create_form when text is NULLDmitry Podgorny2013-03-121-0/+2
* Made connection free resources static functionJames Booth2013-02-271-1/+0
* Show available resources for current account with "/account"James Booth2013-02-181-0/+2
* Added usage of handlers to message and presence modulesJames Booth2013-02-101-1/+2
* Added resource_presence_t and contact_presence_tJames Booth2013-02-101-1/+0
* Renamed jabber_presence_t->presence_tJames Booth2013-02-101-1/+1
'>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 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