about summary refs log tree commit diff stats
path: root/src/xmpp/stanza.c
Commit message (Expand)AuthorAgeFilesLines
* Show messages on /group add and /group removeJames Booth2013-06-231-2/+5
* fixed memory leaks in presence.cDmitry Podgorny2013-06-091-5/+27
* fixed several memory leaksDmitry Podgorny2013-06-091-3/+19
* Added /roster remove commandJames Booth2013-06-021-0/+23
* Add groups to roster contactsJames Booth2013-05-221-1/+12
* Changing roster handle with no argument clears handleJames Booth2013-05-191-1/+5
* Added /roster command with nick option to change handleJames Booth2013-05-191-0/+23
* Added /duck command to perform searches using duckduckgo chat botJames Booth2013-05-051-1/+4
* Added /invite for direct MUC invitationsJames Booth2013-04-201-0/+24
* Refactor show and status stanza handlingJames Booth2013-03-171-0/+26
* Added /disco commandJames Booth2013-03-141-2/+4
* Added basic /rooms command to get chat room listJames Booth2013-03-131-0/+20
* fixed crash in stanza_create_form when text is NULLDmitry Podgorny2013-03-121-1/+6
* Added autocomplete for /software commandJames Booth2013-02-171-0/+19
* Tidy up presence moduleJames Booth2013-02-101-0/+27
* Added resource_presence_t and contact_presence_tJames Booth2013-02-101-6/+6
* Renamed jabber_presence_t->presence_tJames Booth2013-02-101-1/+1
* Moved setting presence status and show into functionsJames Booth2013-02-041-53/+40
* Moved function to get presence string from type to stanza.cJames Booth2013-02-031-0/+18
* Send entity capabilities and status when joining roomJames Booth2013-02-031-1/+76
* Fixed crash on receiving dataformJames Booth2013-02-031-1/+1
* Tidied #include'sJames Booth2013-02-021-1/+1
* Removed stanza functions from xmpp.hJames Booth2013-02-021-1/+1
* Added xmpp subdir to sourceJames Booth2013-02-021-0/+608
.c?id=a3a73cf0031fef7b4012b27bc1955c406175f0fe'>a3a73cf0 ^
904a5a81 ^

a35cbea7 ^
a3a73cf0 ^
a35cbea7 ^




a3a73cf0 ^
a35cbea7 ^

a3a73cf0 ^

a35cbea7 ^










904a5a81 ^

eca73909 ^


a3a73cf0 ^



eca73909 ^





























904a5a81 ^


a3a73cf0 ^



904a5a81 ^










eca73909 ^
904a5a81 ^





0649aad8 ^
904a5a81 ^








1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163