File: api-objects.txt

package info (click to toggle)
python-xmpp 0.4.1-cvs20080505.2
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 4,984 kB
  • ctags: 6,523
  • sloc: python: 3,384; makefile: 60
file content (1650 lines) | stat: -rw-r--r-- 124,789 bytes parent folder | download | duplicates (2)
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
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
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
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
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
xmpp	xmpp-module.html
xmpp.STREAM_NOT_AUTHORIZED	xmpp-module.html#STREAM_NOT_AUTHORIZED
xmpp.STREAM_CONNECTION_TIMEOUT	xmpp-module.html#STREAM_CONNECTION_TIMEOUT
xmpp.STREAM_IMPROPER_ADDRESSING	xmpp-module.html#STREAM_IMPROPER_ADDRESSING
xmpp.ERR_GONE	xmpp-module.html#ERR_GONE
xmpp.ERR_NOT_AUTHORIZED	xmpp-module.html#ERR_NOT_AUTHORIZED
xmpp.ERR_REGISTRATION_REQUIRED	xmpp-module.html#ERR_REGISTRATION_REQUIRED
xmpp.ERR_INTERNAL_SERVER_ERROR	xmpp-module.html#ERR_INTERNAL_SERVER_ERROR
xmpp.SASL_INCORRECT_ENCODING	xmpp-module.html#SASL_INCORRECT_ENCODING
xmpp.STREAM_UNSUPPORTED_ENCODING	xmpp-module.html#STREAM_UNSUPPORTED_ENCODING
xmpp.ERR_REDIRECT	xmpp-module.html#ERR_REDIRECT
xmpp.isErrorNode	xmpp.protocol-module.html#isErrorNode
xmpp.ERR_FEATURE_NOT_IMPLEMENTED	xmpp-module.html#ERR_FEATURE_NOT_IMPLEMENTED
xmpp.name	xmpp-module.html#name
xmpp.ERR_RESOURCE_CONSTRAINT	xmpp-module.html#ERR_RESOURCE_CONSTRAINT
xmpp.SASL_INVALID_AUTHZID	xmpp-module.html#SASL_INVALID_AUTHZID
xmpp.ERR_JID_MALFORMED	xmpp-module.html#ERR_JID_MALFORMED
xmpp.STREAM_UNSUPPORTED_VERSION	xmpp-module.html#STREAM_UNSUPPORTED_VERSION
xmpp.STREAM_CONFLICT	xmpp-module.html#STREAM_CONFLICT
xmpp.isResultNode	xmpp.protocol-module.html#isResultNode
xmpp.ERR_SERVICE_UNAVAILABLE	xmpp-module.html#ERR_SERVICE_UNAVAILABLE
xmpp.STREAM_UNDEFINED_CONDITION	xmpp-module.html#STREAM_UNDEFINED_CONDITION
xmpp.ERRORS	xmpp-module.html#ERRORS
xmpp.STREAM_BAD_FORMAT	xmpp-module.html#STREAM_BAD_FORMAT
xmpp.SASL_ABORTED	xmpp-module.html#SASL_ABORTED
xmpp.STREAM_HOST_GONE	xmpp-module.html#STREAM_HOST_GONE
xmpp.ERR_UNDEFINED_CONDITION	xmpp-module.html#ERR_UNDEFINED_CONDITION
xmpp.STREAM_INVALID_FROM	xmpp-module.html#STREAM_INVALID_FROM
xmpp.ERR_REMOTE_SERVER_TIMEOUT	xmpp-module.html#ERR_REMOTE_SERVER_TIMEOUT
xmpp.ERR_CONFLICT	xmpp-module.html#ERR_CONFLICT
xmpp.STREAM_SYSTEM_SHUTDOWN	xmpp-module.html#STREAM_SYSTEM_SHUTDOWN
xmpp.STREAM_INVALID_NAMESPACE	xmpp-module.html#STREAM_INVALID_NAMESPACE
xmpp.SASL_NOT_AUTHORIZED	xmpp-module.html#SASL_NOT_AUTHORIZED
xmpp.ERR_REMOTE_SERVER_NOT_FOUND	xmpp-module.html#ERR_REMOTE_SERVER_NOT_FOUND
xmpp.ERR_SUBSCRIPTION_REQUIRED	xmpp-module.html#ERR_SUBSCRIPTION_REQUIRED
xmpp.STREAM_INTERNAL_SERVER_ERROR	xmpp-module.html#STREAM_INTERNAL_SERVER_ERROR
xmpp.STREAM_INVALID_XML	xmpp-module.html#STREAM_INVALID_XML
xmpp.ERR_NOT_ALLOWED	xmpp-module.html#ERR_NOT_ALLOWED
xmpp.STREAM_HOST_UNKNOWN	xmpp-module.html#STREAM_HOST_UNKNOWN
xmpp.ERR_BAD_REQUEST	xmpp-module.html#ERR_BAD_REQUEST
xmpp.SASL_MECHANISM_TOO_WEAK	xmpp-module.html#SASL_MECHANISM_TOO_WEAK
xmpp.STREAM_XML_NOT_WELL_FORMED	xmpp-module.html#STREAM_XML_NOT_WELL_FORMED
xmpp.STREAM_POLICY_VIOLATION	xmpp-module.html#STREAM_POLICY_VIOLATION
xmpp.STREAM_SEE_OTHER_HOST	xmpp-module.html#STREAM_SEE_OTHER_HOST
xmpp.STREAM_BAD_NAMESPACE_PREFIX	xmpp-module.html#STREAM_BAD_NAMESPACE_PREFIX
xmpp.SASL_INVALID_MECHANISM	xmpp-module.html#SASL_INVALID_MECHANISM
xmpp.ERR_UNEXPECTED_REQUEST	xmpp-module.html#ERR_UNEXPECTED_REQUEST
xmpp.ERR_RECIPIENT_UNAVAILABLE	xmpp-module.html#ERR_RECIPIENT_UNAVAILABLE
xmpp.SASL_TEMPORARY_AUTH_FAILURE	xmpp-module.html#SASL_TEMPORARY_AUTH_FAILURE
xmpp.ERR_PAYMENT_REQUIRED	xmpp-module.html#ERR_PAYMENT_REQUIRED
xmpp.STREAM_RESTRICTED_XML	xmpp-module.html#STREAM_RESTRICTED_XML
xmpp.STREAM_RESOURCE_CONSTRAINT	xmpp-module.html#STREAM_RESOURCE_CONSTRAINT
xmpp.ERR_ITEM_NOT_FOUND	xmpp-module.html#ERR_ITEM_NOT_FOUND
xmpp.STREAM_REMOTE_CONNECTION_FAILED	xmpp-module.html#STREAM_REMOTE_CONNECTION_FAILED
xmpp.STREAM_INVALID_ID	xmpp-module.html#STREAM_INVALID_ID
xmpp.ustr	xmpp.simplexml-module.html#ustr
xmpp.ERR_NOT_ACCEPTABLE	xmpp-module.html#ERR_NOT_ACCEPTABLE
xmpp.STREAM_UNSUPPORTED_STANZA_TYPE	xmpp-module.html#STREAM_UNSUPPORTED_STANZA_TYPE
xmpp.ERR_FORBIDDEN	xmpp-module.html#ERR_FORBIDDEN
xmpp.auth	xmpp.auth-module.html
xmpp.auth.STREAM_NOT_AUTHORIZED	xmpp.auth-module.html#STREAM_NOT_AUTHORIZED
xmpp.auth.STREAM_CONNECTION_TIMEOUT	xmpp.auth-module.html#STREAM_CONNECTION_TIMEOUT
xmpp.auth.STREAM_IMPROPER_ADDRESSING	xmpp.auth-module.html#STREAM_IMPROPER_ADDRESSING
xmpp.auth.ERR_GONE	xmpp.auth-module.html#ERR_GONE
xmpp.auth.ERR_CONFLICT	xmpp.auth-module.html#ERR_CONFLICT
xmpp.auth.ERR_NOT_AUTHORIZED	xmpp.auth-module.html#ERR_NOT_AUTHORIZED
xmpp.auth.ERR_REGISTRATION_REQUIRED	xmpp.auth-module.html#ERR_REGISTRATION_REQUIRED
xmpp.auth.ERR_INTERNAL_SERVER_ERROR	xmpp.auth-module.html#ERR_INTERNAL_SERVER_ERROR
xmpp.auth.SASL_INCORRECT_ENCODING	xmpp.auth-module.html#SASL_INCORRECT_ENCODING
xmpp.auth.H	xmpp.auth-module.html#H
xmpp.auth.STREAM_UNSUPPORTED_ENCODING	xmpp.auth-module.html#STREAM_UNSUPPORTED_ENCODING
xmpp.auth.ERR_REDIRECT	xmpp.auth-module.html#ERR_REDIRECT
xmpp.auth.isErrorNode	xmpp.protocol-module.html#isErrorNode
xmpp.auth.ERR_FEATURE_NOT_IMPLEMENTED	xmpp.auth-module.html#ERR_FEATURE_NOT_IMPLEMENTED
xmpp.auth.name	xmpp.auth-module.html#name
xmpp.auth.ERR_RESOURCE_CONSTRAINT	xmpp.auth-module.html#ERR_RESOURCE_CONSTRAINT
xmpp.auth.SASL_INVALID_AUTHZID	xmpp.auth-module.html#SASL_INVALID_AUTHZID
xmpp.auth.ERR_JID_MALFORMED	xmpp.auth-module.html#ERR_JID_MALFORMED
xmpp.auth.STREAM_CONFLICT	xmpp.auth-module.html#STREAM_CONFLICT
xmpp.auth.isResultNode	xmpp.protocol-module.html#isResultNode
xmpp.auth.HH	xmpp.auth-module.html#HH
xmpp.auth.ERR_SERVICE_UNAVAILABLE	xmpp.auth-module.html#ERR_SERVICE_UNAVAILABLE
xmpp.auth.STREAM_UNDEFINED_CONDITION	xmpp.auth-module.html#STREAM_UNDEFINED_CONDITION
xmpp.auth.ERRORS	xmpp.auth-module.html#ERRORS
xmpp.auth.STREAM_INVALID_NAMESPACE	xmpp.auth-module.html#STREAM_INVALID_NAMESPACE
xmpp.auth.STREAM_BAD_FORMAT	xmpp.auth-module.html#STREAM_BAD_FORMAT
xmpp.auth.SASL_ABORTED	xmpp.auth-module.html#SASL_ABORTED
xmpp.auth.STREAM_HOST_GONE	xmpp.auth-module.html#STREAM_HOST_GONE
xmpp.auth.C	xmpp.auth-module.html#C
xmpp.auth.ERR_UNDEFINED_CONDITION	xmpp.auth-module.html#ERR_UNDEFINED_CONDITION
xmpp.auth.STREAM_INVALID_FROM	xmpp.auth-module.html#STREAM_INVALID_FROM
xmpp.auth.ERR_REMOTE_SERVER_TIMEOUT	xmpp.auth-module.html#ERR_REMOTE_SERVER_TIMEOUT
xmpp.auth.STREAM_SYSTEM_SHUTDOWN	xmpp.auth-module.html#STREAM_SYSTEM_SHUTDOWN
xmpp.auth.STREAM_UNSUPPORTED_VERSION	xmpp.auth-module.html#STREAM_UNSUPPORTED_VERSION
xmpp.auth.SASL_NOT_AUTHORIZED	xmpp.auth-module.html#SASL_NOT_AUTHORIZED
xmpp.auth.ERR_REMOTE_SERVER_NOT_FOUND	xmpp.auth-module.html#ERR_REMOTE_SERVER_NOT_FOUND
xmpp.auth.ERR_SUBSCRIPTION_REQUIRED	xmpp.auth-module.html#ERR_SUBSCRIPTION_REQUIRED
xmpp.auth.STREAM_INTERNAL_SERVER_ERROR	xmpp.auth-module.html#STREAM_INTERNAL_SERVER_ERROR
xmpp.auth.STREAM_INVALID_XML	xmpp.auth-module.html#STREAM_INVALID_XML
xmpp.auth.ERR_NOT_ALLOWED	xmpp.auth-module.html#ERR_NOT_ALLOWED
xmpp.auth.STREAM_HOST_UNKNOWN	xmpp.auth-module.html#STREAM_HOST_UNKNOWN
xmpp.auth.ERR_BAD_REQUEST	xmpp.auth-module.html#ERR_BAD_REQUEST
xmpp.auth.SASL_MECHANISM_TOO_WEAK	xmpp.auth-module.html#SASL_MECHANISM_TOO_WEAK
xmpp.auth.STREAM_XML_NOT_WELL_FORMED	xmpp.auth-module.html#STREAM_XML_NOT_WELL_FORMED
xmpp.auth.STREAM_POLICY_VIOLATION	xmpp.auth-module.html#STREAM_POLICY_VIOLATION
xmpp.auth.STREAM_SEE_OTHER_HOST	xmpp.auth-module.html#STREAM_SEE_OTHER_HOST
xmpp.auth.STREAM_BAD_NAMESPACE_PREFIX	xmpp.auth-module.html#STREAM_BAD_NAMESPACE_PREFIX
xmpp.auth.SASL_INVALID_MECHANISM	xmpp.auth-module.html#SASL_INVALID_MECHANISM
xmpp.auth.ERR_UNEXPECTED_REQUEST	xmpp.auth-module.html#ERR_UNEXPECTED_REQUEST
xmpp.auth.ERR_RECIPIENT_UNAVAILABLE	xmpp.auth-module.html#ERR_RECIPIENT_UNAVAILABLE
xmpp.auth.SASL_TEMPORARY_AUTH_FAILURE	xmpp.auth-module.html#SASL_TEMPORARY_AUTH_FAILURE
xmpp.auth.ERR_PAYMENT_REQUIRED	xmpp.auth-module.html#ERR_PAYMENT_REQUIRED
xmpp.auth.STREAM_RESTRICTED_XML	xmpp.auth-module.html#STREAM_RESTRICTED_XML
xmpp.auth.STREAM_RESOURCE_CONSTRAINT	xmpp.auth-module.html#STREAM_RESOURCE_CONSTRAINT
xmpp.auth.ERR_ITEM_NOT_FOUND	xmpp.auth-module.html#ERR_ITEM_NOT_FOUND
xmpp.auth.STREAM_REMOTE_CONNECTION_FAILED	xmpp.auth-module.html#STREAM_REMOTE_CONNECTION_FAILED
xmpp.auth.STREAM_INVALID_ID	xmpp.auth-module.html#STREAM_INVALID_ID
xmpp.auth.ustr	xmpp.simplexml-module.html#ustr
xmpp.auth.ERR_NOT_ACCEPTABLE	xmpp.auth-module.html#ERR_NOT_ACCEPTABLE
xmpp.auth.STREAM_UNSUPPORTED_STANZA_TYPE	xmpp.auth-module.html#STREAM_UNSUPPORTED_STANZA_TYPE
xmpp.auth.ERR_FORBIDDEN	xmpp.auth-module.html#ERR_FORBIDDEN
xmpp.browser	xmpp.browser-module.html
xmpp.browser.STREAM_NOT_AUTHORIZED	xmpp.browser-module.html#STREAM_NOT_AUTHORIZED
xmpp.browser.STREAM_CONNECTION_TIMEOUT	xmpp.browser-module.html#STREAM_CONNECTION_TIMEOUT
xmpp.browser.STREAM_IMPROPER_ADDRESSING	xmpp.browser-module.html#STREAM_IMPROPER_ADDRESSING
xmpp.browser.ERR_GONE	xmpp.browser-module.html#ERR_GONE
xmpp.browser.ERR_NOT_AUTHORIZED	xmpp.browser-module.html#ERR_NOT_AUTHORIZED
xmpp.browser.ERR_REGISTRATION_REQUIRED	xmpp.browser-module.html#ERR_REGISTRATION_REQUIRED
xmpp.browser.ERR_INTERNAL_SERVER_ERROR	xmpp.browser-module.html#ERR_INTERNAL_SERVER_ERROR
xmpp.browser.SASL_INCORRECT_ENCODING	xmpp.browser-module.html#SASL_INCORRECT_ENCODING
xmpp.browser.STREAM_UNSUPPORTED_ENCODING	xmpp.browser-module.html#STREAM_UNSUPPORTED_ENCODING
xmpp.browser.ERR_REDIRECT	xmpp.browser-module.html#ERR_REDIRECT
xmpp.browser.isErrorNode	xmpp.protocol-module.html#isErrorNode
xmpp.browser.ERR_FEATURE_NOT_IMPLEMENTED	xmpp.browser-module.html#ERR_FEATURE_NOT_IMPLEMENTED
xmpp.browser.name	xmpp.browser-module.html#name
xmpp.browser.ERR_RESOURCE_CONSTRAINT	xmpp.browser-module.html#ERR_RESOURCE_CONSTRAINT
xmpp.browser.SASL_INVALID_AUTHZID	xmpp.browser-module.html#SASL_INVALID_AUTHZID
xmpp.browser.ERR_JID_MALFORMED	xmpp.browser-module.html#ERR_JID_MALFORMED
xmpp.browser.STREAM_CONFLICT	xmpp.browser-module.html#STREAM_CONFLICT
xmpp.browser.isResultNode	xmpp.protocol-module.html#isResultNode
xmpp.browser.STREAM_HOST_UNKNOWN	xmpp.browser-module.html#STREAM_HOST_UNKNOWN
xmpp.browser.ERR_SERVICE_UNAVAILABLE	xmpp.browser-module.html#ERR_SERVICE_UNAVAILABLE
xmpp.browser.STREAM_UNDEFINED_CONDITION	xmpp.browser-module.html#STREAM_UNDEFINED_CONDITION
xmpp.browser.ERRORS	xmpp.browser-module.html#ERRORS
xmpp.browser.STREAM_BAD_FORMAT	xmpp.browser-module.html#STREAM_BAD_FORMAT
xmpp.browser.SASL_ABORTED	xmpp.browser-module.html#SASL_ABORTED
xmpp.browser.STREAM_HOST_GONE	xmpp.browser-module.html#STREAM_HOST_GONE
xmpp.browser.ERR_UNDEFINED_CONDITION	xmpp.browser-module.html#ERR_UNDEFINED_CONDITION
xmpp.browser.STREAM_INVALID_FROM	xmpp.browser-module.html#STREAM_INVALID_FROM
xmpp.browser.ERR_REMOTE_SERVER_TIMEOUT	xmpp.browser-module.html#ERR_REMOTE_SERVER_TIMEOUT
xmpp.browser.ERR_CONFLICT	xmpp.browser-module.html#ERR_CONFLICT
xmpp.browser.STREAM_SYSTEM_SHUTDOWN	xmpp.browser-module.html#STREAM_SYSTEM_SHUTDOWN
xmpp.browser.STREAM_INVALID_NAMESPACE	xmpp.browser-module.html#STREAM_INVALID_NAMESPACE
xmpp.browser.STREAM_UNSUPPORTED_VERSION	xmpp.browser-module.html#STREAM_UNSUPPORTED_VERSION
xmpp.browser.SASL_NOT_AUTHORIZED	xmpp.browser-module.html#SASL_NOT_AUTHORIZED
xmpp.browser.ERR_REMOTE_SERVER_NOT_FOUND	xmpp.browser-module.html#ERR_REMOTE_SERVER_NOT_FOUND
xmpp.browser.ERR_SUBSCRIPTION_REQUIRED	xmpp.browser-module.html#ERR_SUBSCRIPTION_REQUIRED
xmpp.browser.STREAM_INTERNAL_SERVER_ERROR	xmpp.browser-module.html#STREAM_INTERNAL_SERVER_ERROR
xmpp.browser.STREAM_INVALID_XML	xmpp.browser-module.html#STREAM_INVALID_XML
xmpp.browser.ERR_NOT_ALLOWED	xmpp.browser-module.html#ERR_NOT_ALLOWED
xmpp.browser.ERR_BAD_REQUEST	xmpp.browser-module.html#ERR_BAD_REQUEST
xmpp.browser.SASL_MECHANISM_TOO_WEAK	xmpp.browser-module.html#SASL_MECHANISM_TOO_WEAK
xmpp.browser.STREAM_XML_NOT_WELL_FORMED	xmpp.browser-module.html#STREAM_XML_NOT_WELL_FORMED
xmpp.browser.STREAM_POLICY_VIOLATION	xmpp.browser-module.html#STREAM_POLICY_VIOLATION
xmpp.browser.STREAM_SEE_OTHER_HOST	xmpp.browser-module.html#STREAM_SEE_OTHER_HOST
xmpp.browser.STREAM_BAD_NAMESPACE_PREFIX	xmpp.browser-module.html#STREAM_BAD_NAMESPACE_PREFIX
xmpp.browser.SASL_INVALID_MECHANISM	xmpp.browser-module.html#SASL_INVALID_MECHANISM
xmpp.browser.ERR_UNEXPECTED_REQUEST	xmpp.browser-module.html#ERR_UNEXPECTED_REQUEST
xmpp.browser.ERR_RECIPIENT_UNAVAILABLE	xmpp.browser-module.html#ERR_RECIPIENT_UNAVAILABLE
xmpp.browser.SASL_TEMPORARY_AUTH_FAILURE	xmpp.browser-module.html#SASL_TEMPORARY_AUTH_FAILURE
xmpp.browser.ERR_PAYMENT_REQUIRED	xmpp.browser-module.html#ERR_PAYMENT_REQUIRED
xmpp.browser.STREAM_RESTRICTED_XML	xmpp.browser-module.html#STREAM_RESTRICTED_XML
xmpp.browser.STREAM_RESOURCE_CONSTRAINT	xmpp.browser-module.html#STREAM_RESOURCE_CONSTRAINT
xmpp.browser.ERR_ITEM_NOT_FOUND	xmpp.browser-module.html#ERR_ITEM_NOT_FOUND
xmpp.browser.STREAM_REMOTE_CONNECTION_FAILED	xmpp.browser-module.html#STREAM_REMOTE_CONNECTION_FAILED
xmpp.browser.STREAM_INVALID_ID	xmpp.browser-module.html#STREAM_INVALID_ID
xmpp.browser.ustr	xmpp.simplexml-module.html#ustr
xmpp.browser.ERR_NOT_ACCEPTABLE	xmpp.browser-module.html#ERR_NOT_ACCEPTABLE
xmpp.browser.STREAM_UNSUPPORTED_STANZA_TYPE	xmpp.browser-module.html#STREAM_UNSUPPORTED_STANZA_TYPE
xmpp.browser.ERR_FORBIDDEN	xmpp.browser-module.html#ERR_FORBIDDEN
xmpp.client	xmpp.client-module.html
xmpp.client.DBG_COMPONENT	xmpp.client-module.html#DBG_COMPONENT
xmpp.client.DBG_CLIENT	xmpp.client-module.html#DBG_CLIENT
xmpp.commands	xmpp.commands-module.html
xmpp.commands.STREAM_NOT_AUTHORIZED	xmpp.commands-module.html#STREAM_NOT_AUTHORIZED
xmpp.commands.STREAM_CONNECTION_TIMEOUT	xmpp.commands-module.html#STREAM_CONNECTION_TIMEOUT
xmpp.commands.STREAM_IMPROPER_ADDRESSING	xmpp.commands-module.html#STREAM_IMPROPER_ADDRESSING
xmpp.commands.ERR_GONE	xmpp.commands-module.html#ERR_GONE
xmpp.commands.ERR_CONFLICT	xmpp.commands-module.html#ERR_CONFLICT
xmpp.commands.ERR_NOT_AUTHORIZED	xmpp.commands-module.html#ERR_NOT_AUTHORIZED
xmpp.commands.ERR_REGISTRATION_REQUIRED	xmpp.commands-module.html#ERR_REGISTRATION_REQUIRED
xmpp.commands.ERR_INTERNAL_SERVER_ERROR	xmpp.commands-module.html#ERR_INTERNAL_SERVER_ERROR
xmpp.commands.SASL_INCORRECT_ENCODING	xmpp.commands-module.html#SASL_INCORRECT_ENCODING
xmpp.commands.STREAM_UNSUPPORTED_ENCODING	xmpp.commands-module.html#STREAM_UNSUPPORTED_ENCODING
xmpp.commands.ERR_REDIRECT	xmpp.commands-module.html#ERR_REDIRECT
xmpp.commands.isErrorNode	xmpp.protocol-module.html#isErrorNode
xmpp.commands.ERR_FEATURE_NOT_IMPLEMENTED	xmpp.commands-module.html#ERR_FEATURE_NOT_IMPLEMENTED
xmpp.commands.name	xmpp.commands-module.html#name
xmpp.commands.ERR_RESOURCE_CONSTRAINT	xmpp.commands-module.html#ERR_RESOURCE_CONSTRAINT
xmpp.commands.SASL_INVALID_AUTHZID	xmpp.commands-module.html#SASL_INVALID_AUTHZID
xmpp.commands.ERR_JID_MALFORMED	xmpp.commands-module.html#ERR_JID_MALFORMED
xmpp.commands.STREAM_CONFLICT	xmpp.commands-module.html#STREAM_CONFLICT
xmpp.commands.isResultNode	xmpp.protocol-module.html#isResultNode
xmpp.commands.ERR_SERVICE_UNAVAILABLE	xmpp.commands-module.html#ERR_SERVICE_UNAVAILABLE
xmpp.commands.STREAM_UNDEFINED_CONDITION	xmpp.commands-module.html#STREAM_UNDEFINED_CONDITION
xmpp.commands.ERRORS	xmpp.commands-module.html#ERRORS
xmpp.commands.STREAM_BAD_FORMAT	xmpp.commands-module.html#STREAM_BAD_FORMAT
xmpp.commands.SASL_ABORTED	xmpp.commands-module.html#SASL_ABORTED
xmpp.commands.STREAM_HOST_GONE	xmpp.commands-module.html#STREAM_HOST_GONE
xmpp.commands.ERR_UNDEFINED_CONDITION	xmpp.commands-module.html#ERR_UNDEFINED_CONDITION
xmpp.commands.STREAM_INVALID_FROM	xmpp.commands-module.html#STREAM_INVALID_FROM
xmpp.commands.ERR_REMOTE_SERVER_TIMEOUT	xmpp.commands-module.html#ERR_REMOTE_SERVER_TIMEOUT
xmpp.commands.STREAM_SYSTEM_SHUTDOWN	xmpp.commands-module.html#STREAM_SYSTEM_SHUTDOWN
xmpp.commands.STREAM_INVALID_NAMESPACE	xmpp.commands-module.html#STREAM_INVALID_NAMESPACE
xmpp.commands.STREAM_UNSUPPORTED_VERSION	xmpp.commands-module.html#STREAM_UNSUPPORTED_VERSION
xmpp.commands.SASL_NOT_AUTHORIZED	xmpp.commands-module.html#SASL_NOT_AUTHORIZED
xmpp.commands.ERR_REMOTE_SERVER_NOT_FOUND	xmpp.commands-module.html#ERR_REMOTE_SERVER_NOT_FOUND
xmpp.commands.ERR_SUBSCRIPTION_REQUIRED	xmpp.commands-module.html#ERR_SUBSCRIPTION_REQUIRED
xmpp.commands.STREAM_INTERNAL_SERVER_ERROR	xmpp.commands-module.html#STREAM_INTERNAL_SERVER_ERROR
xmpp.commands.STREAM_INVALID_XML	xmpp.commands-module.html#STREAM_INVALID_XML
xmpp.commands.ERR_NOT_ALLOWED	xmpp.commands-module.html#ERR_NOT_ALLOWED
xmpp.commands.STREAM_HOST_UNKNOWN	xmpp.commands-module.html#STREAM_HOST_UNKNOWN
xmpp.commands.ERR_BAD_REQUEST	xmpp.commands-module.html#ERR_BAD_REQUEST
xmpp.commands.SASL_MECHANISM_TOO_WEAK	xmpp.commands-module.html#SASL_MECHANISM_TOO_WEAK
xmpp.commands.STREAM_XML_NOT_WELL_FORMED	xmpp.commands-module.html#STREAM_XML_NOT_WELL_FORMED
xmpp.commands.STREAM_POLICY_VIOLATION	xmpp.commands-module.html#STREAM_POLICY_VIOLATION
xmpp.commands.STREAM_SEE_OTHER_HOST	xmpp.commands-module.html#STREAM_SEE_OTHER_HOST
xmpp.commands.STREAM_BAD_NAMESPACE_PREFIX	xmpp.commands-module.html#STREAM_BAD_NAMESPACE_PREFIX
xmpp.commands.SASL_INVALID_MECHANISM	xmpp.commands-module.html#SASL_INVALID_MECHANISM
xmpp.commands.ERR_UNEXPECTED_REQUEST	xmpp.commands-module.html#ERR_UNEXPECTED_REQUEST
xmpp.commands.ERR_RECIPIENT_UNAVAILABLE	xmpp.commands-module.html#ERR_RECIPIENT_UNAVAILABLE
xmpp.commands.SASL_TEMPORARY_AUTH_FAILURE	xmpp.commands-module.html#SASL_TEMPORARY_AUTH_FAILURE
xmpp.commands.ERR_PAYMENT_REQUIRED	xmpp.commands-module.html#ERR_PAYMENT_REQUIRED
xmpp.commands.STREAM_RESTRICTED_XML	xmpp.commands-module.html#STREAM_RESTRICTED_XML
xmpp.commands.STREAM_RESOURCE_CONSTRAINT	xmpp.commands-module.html#STREAM_RESOURCE_CONSTRAINT
xmpp.commands.ERR_ITEM_NOT_FOUND	xmpp.commands-module.html#ERR_ITEM_NOT_FOUND
xmpp.commands.STREAM_REMOTE_CONNECTION_FAILED	xmpp.commands-module.html#STREAM_REMOTE_CONNECTION_FAILED
xmpp.commands.STREAM_INVALID_ID	xmpp.commands-module.html#STREAM_INVALID_ID
xmpp.commands.ustr	xmpp.simplexml-module.html#ustr
xmpp.commands.ERR_NOT_ACCEPTABLE	xmpp.commands-module.html#ERR_NOT_ACCEPTABLE
xmpp.commands.STREAM_UNSUPPORTED_STANZA_TYPE	xmpp.commands-module.html#STREAM_UNSUPPORTED_STANZA_TYPE
xmpp.commands.ERR_FORBIDDEN	xmpp.commands-module.html#ERR_FORBIDDEN
xmpp.debug	xmpp.debug-module.html
xmpp.debug.color_blue	xmpp.debug-module.html#color_blue
xmpp.debug.color_brown	xmpp.debug-module.html#color_brown
xmpp.debug.colors_enabled	xmpp.debug-module.html#colors_enabled
xmpp.debug.color_white	xmpp.debug-module.html#color_white
xmpp.debug.color_bright_blue	xmpp.debug-module.html#color_bright_blue
xmpp.debug.color_light_gray	xmpp.debug-module.html#color_light_gray
xmpp.debug.color_bright_red	xmpp.debug-module.html#color_bright_red
xmpp.debug.color_cyan	xmpp.debug-module.html#color_cyan
xmpp.debug.color_magenta	xmpp.debug-module.html#color_magenta
xmpp.debug.DBG_ALWAYS	xmpp.debug-module.html#DBG_ALWAYS
xmpp.debug.color_bright_green	xmpp.debug-module.html#color_bright_green
xmpp.debug.color_yellow	xmpp.debug-module.html#color_yellow
xmpp.debug._version_	xmpp.debug-module.html#_version_
xmpp.debug.color_bright_cyan	xmpp.debug-module.html#color_bright_cyan
xmpp.debug.color_green	xmpp.debug-module.html#color_green
xmpp.debug.color_black	xmpp.debug-module.html#color_black
xmpp.debug.LINE_FEED	xmpp.debug-module.html#LINE_FEED
xmpp.debug.DEBUGGING_IS_ON	xmpp.debug-module.html#DEBUGGING_IS_ON
xmpp.debug.color_purple	xmpp.debug-module.html#color_purple
xmpp.debug.color_none	xmpp.debug-module.html#color_none
xmpp.debug.color_red	xmpp.debug-module.html#color_red
xmpp.debug.color_dark_gray	xmpp.debug-module.html#color_dark_gray
xmpp.dispatcher	xmpp.dispatcher-module.html
xmpp.dispatcher.STREAM_NOT_AUTHORIZED	xmpp.dispatcher-module.html#STREAM_NOT_AUTHORIZED
xmpp.dispatcher.STREAM_CONNECTION_TIMEOUT	xmpp.dispatcher-module.html#STREAM_CONNECTION_TIMEOUT
xmpp.dispatcher.STREAM_IMPROPER_ADDRESSING	xmpp.dispatcher-module.html#STREAM_IMPROPER_ADDRESSING
xmpp.dispatcher.ERR_GONE	xmpp.dispatcher-module.html#ERR_GONE
xmpp.dispatcher.ERR_NOT_AUTHORIZED	xmpp.dispatcher-module.html#ERR_NOT_AUTHORIZED
xmpp.dispatcher.ERR_REGISTRATION_REQUIRED	xmpp.dispatcher-module.html#ERR_REGISTRATION_REQUIRED
xmpp.dispatcher.ERR_INTERNAL_SERVER_ERROR	xmpp.dispatcher-module.html#ERR_INTERNAL_SERVER_ERROR
xmpp.dispatcher.SASL_INCORRECT_ENCODING	xmpp.dispatcher-module.html#SASL_INCORRECT_ENCODING
xmpp.dispatcher.STREAM_UNSUPPORTED_ENCODING	xmpp.dispatcher-module.html#STREAM_UNSUPPORTED_ENCODING
xmpp.dispatcher.DefaultTimeout	xmpp.dispatcher-module.html#DefaultTimeout
xmpp.dispatcher.ERR_REDIRECT	xmpp.dispatcher-module.html#ERR_REDIRECT
xmpp.dispatcher.isErrorNode	xmpp.protocol-module.html#isErrorNode
xmpp.dispatcher.ERR_FEATURE_NOT_IMPLEMENTED	xmpp.dispatcher-module.html#ERR_FEATURE_NOT_IMPLEMENTED
xmpp.dispatcher.name	xmpp.dispatcher-module.html#name
xmpp.dispatcher.ERR_RESOURCE_CONSTRAINT	xmpp.dispatcher-module.html#ERR_RESOURCE_CONSTRAINT
xmpp.dispatcher.SASL_INVALID_AUTHZID	xmpp.dispatcher-module.html#SASL_INVALID_AUTHZID
xmpp.dispatcher.ERR_JID_MALFORMED	xmpp.dispatcher-module.html#ERR_JID_MALFORMED
xmpp.dispatcher.STREAM_CONFLICT	xmpp.dispatcher-module.html#STREAM_CONFLICT
xmpp.dispatcher.isResultNode	xmpp.protocol-module.html#isResultNode
xmpp.dispatcher.ERR_SERVICE_UNAVAILABLE	xmpp.dispatcher-module.html#ERR_SERVICE_UNAVAILABLE
xmpp.dispatcher.STREAM_UNDEFINED_CONDITION	xmpp.dispatcher-module.html#STREAM_UNDEFINED_CONDITION
xmpp.dispatcher.ERRORS	xmpp.dispatcher-module.html#ERRORS
xmpp.dispatcher.STREAM_BAD_FORMAT	xmpp.dispatcher-module.html#STREAM_BAD_FORMAT
xmpp.dispatcher.SASL_ABORTED	xmpp.dispatcher-module.html#SASL_ABORTED
xmpp.dispatcher.STREAM_HOST_GONE	xmpp.dispatcher-module.html#STREAM_HOST_GONE
xmpp.dispatcher.ERR_UNDEFINED_CONDITION	xmpp.dispatcher-module.html#ERR_UNDEFINED_CONDITION
xmpp.dispatcher.STREAM_INVALID_FROM	xmpp.dispatcher-module.html#STREAM_INVALID_FROM
xmpp.dispatcher.ERR_REMOTE_SERVER_TIMEOUT	xmpp.dispatcher-module.html#ERR_REMOTE_SERVER_TIMEOUT
xmpp.dispatcher.ERR_CONFLICT	xmpp.dispatcher-module.html#ERR_CONFLICT
xmpp.dispatcher.STREAM_SYSTEM_SHUTDOWN	xmpp.dispatcher-module.html#STREAM_SYSTEM_SHUTDOWN
xmpp.dispatcher.STREAM_INVALID_NAMESPACE	xmpp.dispatcher-module.html#STREAM_INVALID_NAMESPACE
xmpp.dispatcher.STREAM_UNSUPPORTED_VERSION	xmpp.dispatcher-module.html#STREAM_UNSUPPORTED_VERSION
xmpp.dispatcher.SASL_NOT_AUTHORIZED	xmpp.dispatcher-module.html#SASL_NOT_AUTHORIZED
xmpp.dispatcher.ERR_REMOTE_SERVER_NOT_FOUND	xmpp.dispatcher-module.html#ERR_REMOTE_SERVER_NOT_FOUND
xmpp.dispatcher.ERR_SUBSCRIPTION_REQUIRED	xmpp.dispatcher-module.html#ERR_SUBSCRIPTION_REQUIRED
xmpp.dispatcher.STREAM_INTERNAL_SERVER_ERROR	xmpp.dispatcher-module.html#STREAM_INTERNAL_SERVER_ERROR
xmpp.dispatcher.STREAM_INVALID_XML	xmpp.dispatcher-module.html#STREAM_INVALID_XML
xmpp.dispatcher.ERR_NOT_ALLOWED	xmpp.dispatcher-module.html#ERR_NOT_ALLOWED
xmpp.dispatcher.STREAM_HOST_UNKNOWN	xmpp.dispatcher-module.html#STREAM_HOST_UNKNOWN
xmpp.dispatcher.ERR_BAD_REQUEST	xmpp.dispatcher-module.html#ERR_BAD_REQUEST
xmpp.dispatcher.SASL_MECHANISM_TOO_WEAK	xmpp.dispatcher-module.html#SASL_MECHANISM_TOO_WEAK
xmpp.dispatcher.STREAM_XML_NOT_WELL_FORMED	xmpp.dispatcher-module.html#STREAM_XML_NOT_WELL_FORMED
xmpp.dispatcher.STREAM_POLICY_VIOLATION	xmpp.dispatcher-module.html#STREAM_POLICY_VIOLATION
xmpp.dispatcher.STREAM_SEE_OTHER_HOST	xmpp.dispatcher-module.html#STREAM_SEE_OTHER_HOST
xmpp.dispatcher.STREAM_BAD_NAMESPACE_PREFIX	xmpp.dispatcher-module.html#STREAM_BAD_NAMESPACE_PREFIX
xmpp.dispatcher.SASL_INVALID_MECHANISM	xmpp.dispatcher-module.html#SASL_INVALID_MECHANISM
xmpp.dispatcher.ERR_UNEXPECTED_REQUEST	xmpp.dispatcher-module.html#ERR_UNEXPECTED_REQUEST
xmpp.dispatcher.ERR_RECIPIENT_UNAVAILABLE	xmpp.dispatcher-module.html#ERR_RECIPIENT_UNAVAILABLE
xmpp.dispatcher.SASL_TEMPORARY_AUTH_FAILURE	xmpp.dispatcher-module.html#SASL_TEMPORARY_AUTH_FAILURE
xmpp.dispatcher.ERR_PAYMENT_REQUIRED	xmpp.dispatcher-module.html#ERR_PAYMENT_REQUIRED
xmpp.dispatcher.STREAM_RESTRICTED_XML	xmpp.dispatcher-module.html#STREAM_RESTRICTED_XML
xmpp.dispatcher.STREAM_RESOURCE_CONSTRAINT	xmpp.dispatcher-module.html#STREAM_RESOURCE_CONSTRAINT
xmpp.dispatcher.ERR_ITEM_NOT_FOUND	xmpp.dispatcher-module.html#ERR_ITEM_NOT_FOUND
xmpp.dispatcher.STREAM_REMOTE_CONNECTION_FAILED	xmpp.dispatcher-module.html#STREAM_REMOTE_CONNECTION_FAILED
xmpp.dispatcher.ID	xmpp.dispatcher-module.html#ID
xmpp.dispatcher.STREAM_INVALID_ID	xmpp.dispatcher-module.html#STREAM_INVALID_ID
xmpp.dispatcher.ustr	xmpp.simplexml-module.html#ustr
xmpp.dispatcher.ERR_NOT_ACCEPTABLE	xmpp.dispatcher-module.html#ERR_NOT_ACCEPTABLE
xmpp.dispatcher.STREAM_UNSUPPORTED_STANZA_TYPE	xmpp.dispatcher-module.html#STREAM_UNSUPPORTED_STANZA_TYPE
xmpp.dispatcher.ERR_FORBIDDEN	xmpp.dispatcher-module.html#ERR_FORBIDDEN
xmpp.features	xmpp.features-module.html
xmpp.features.getPrivacyList	xmpp.features-module.html#getPrivacyList
xmpp.features.STREAM_NOT_AUTHORIZED	xmpp.features-module.html#STREAM_NOT_AUTHORIZED
xmpp.features.STREAM_CONNECTION_TIMEOUT	xmpp.features-module.html#STREAM_CONNECTION_TIMEOUT
xmpp.features.STREAM_IMPROPER_ADDRESSING	xmpp.features-module.html#STREAM_IMPROPER_ADDRESSING
xmpp.features._ReceivedRegInfo	xmpp.features-module.html#_ReceivedRegInfo
xmpp.features.ERR_GONE	xmpp.features-module.html#ERR_GONE
xmpp.features.register	xmpp.features-module.html#register
xmpp.features.ERR_CONFLICT	xmpp.features-module.html#ERR_CONFLICT
xmpp.features.ERR_NOT_AUTHORIZED	xmpp.features-module.html#ERR_NOT_AUTHORIZED
xmpp.features.ERR_REGISTRATION_REQUIRED	xmpp.features-module.html#ERR_REGISTRATION_REQUIRED
xmpp.features.ERR_INTERNAL_SERVER_ERROR	xmpp.features-module.html#ERR_INTERNAL_SERVER_ERROR
xmpp.features.SASL_INCORRECT_ENCODING	xmpp.features-module.html#SASL_INCORRECT_ENCODING
xmpp.features.STREAM_UNSUPPORTED_ENCODING	xmpp.features-module.html#STREAM_UNSUPPORTED_ENCODING
xmpp.features.ERR_REDIRECT	xmpp.features-module.html#ERR_REDIRECT
xmpp.features.isErrorNode	xmpp.protocol-module.html#isErrorNode
xmpp.features.ERR_FEATURE_NOT_IMPLEMENTED	xmpp.features-module.html#ERR_FEATURE_NOT_IMPLEMENTED
xmpp.features.getRegInfo	xmpp.features-module.html#getRegInfo
xmpp.features.name	xmpp.features-module.html#name
xmpp.features.ERR_RESOURCE_CONSTRAINT	xmpp.features-module.html#ERR_RESOURCE_CONSTRAINT
xmpp.features.unregister	xmpp.features-module.html#unregister
xmpp.features.SASL_INVALID_AUTHZID	xmpp.features-module.html#SASL_INVALID_AUTHZID
xmpp.features.ERR_JID_MALFORMED	xmpp.features-module.html#ERR_JID_MALFORMED
xmpp.features.STREAM_CONFLICT	xmpp.features-module.html#STREAM_CONFLICT
xmpp.features.isResultNode	xmpp.protocol-module.html#isResultNode
xmpp.features.ERR_SERVICE_UNAVAILABLE	xmpp.features-module.html#ERR_SERVICE_UNAVAILABLE
xmpp.features.STREAM_UNDEFINED_CONDITION	xmpp.features-module.html#STREAM_UNDEFINED_CONDITION
xmpp.features.ERRORS	xmpp.features-module.html#ERRORS
xmpp.features.STREAM_BAD_FORMAT	xmpp.features-module.html#STREAM_BAD_FORMAT
xmpp.features.SASL_ABORTED	xmpp.features-module.html#SASL_ABORTED
xmpp.features.delPrivacyList	xmpp.features-module.html#delPrivacyList
xmpp.features.STREAM_HOST_GONE	xmpp.features-module.html#STREAM_HOST_GONE
xmpp.features.ERR_UNDEFINED_CONDITION	xmpp.features-module.html#ERR_UNDEFINED_CONDITION
xmpp.features.STREAM_INVALID_FROM	xmpp.features-module.html#STREAM_INVALID_FROM
xmpp.features.REGISTER_DATA_RECEIVED	xmpp.features-module.html#REGISTER_DATA_RECEIVED
xmpp.features._discover	xmpp.features-module.html#_discover
xmpp.features.ERR_REMOTE_SERVER_TIMEOUT	xmpp.features-module.html#ERR_REMOTE_SERVER_TIMEOUT
xmpp.features.STREAM_SYSTEM_SHUTDOWN	xmpp.features-module.html#STREAM_SYSTEM_SHUTDOWN
xmpp.features.STREAM_INVALID_NAMESPACE	xmpp.features-module.html#STREAM_INVALID_NAMESPACE
xmpp.features.discoverItems	xmpp.features-module.html#discoverItems
xmpp.features.setDefaultPrivacyList	xmpp.features-module.html#setDefaultPrivacyList
xmpp.features.STREAM_UNSUPPORTED_VERSION	xmpp.features-module.html#STREAM_UNSUPPORTED_VERSION
xmpp.features.SASL_NOT_AUTHORIZED	xmpp.features-module.html#SASL_NOT_AUTHORIZED
xmpp.features.ERR_REMOTE_SERVER_NOT_FOUND	xmpp.features-module.html#ERR_REMOTE_SERVER_NOT_FOUND
xmpp.features.ERR_SUBSCRIPTION_REQUIRED	xmpp.features-module.html#ERR_SUBSCRIPTION_REQUIRED
xmpp.features.STREAM_INTERNAL_SERVER_ERROR	xmpp.features-module.html#STREAM_INTERNAL_SERVER_ERROR
xmpp.features.STREAM_INVALID_XML	xmpp.features-module.html#STREAM_INVALID_XML
xmpp.features.ERR_NOT_ALLOWED	xmpp.features-module.html#ERR_NOT_ALLOWED
xmpp.features.getPrivacyLists	xmpp.features-module.html#getPrivacyLists
xmpp.features.STREAM_HOST_UNKNOWN	xmpp.features-module.html#STREAM_HOST_UNKNOWN
xmpp.features.ERR_BAD_REQUEST	xmpp.features-module.html#ERR_BAD_REQUEST
xmpp.features.changePasswordTo	xmpp.features-module.html#changePasswordTo
xmpp.features.SASL_MECHANISM_TOO_WEAK	xmpp.features-module.html#SASL_MECHANISM_TOO_WEAK
xmpp.features.STREAM_XML_NOT_WELL_FORMED	xmpp.features-module.html#STREAM_XML_NOT_WELL_FORMED
xmpp.features.STREAM_POLICY_VIOLATION	xmpp.features-module.html#STREAM_POLICY_VIOLATION
xmpp.features.STREAM_SEE_OTHER_HOST	xmpp.features-module.html#STREAM_SEE_OTHER_HOST
xmpp.features.STREAM_BAD_NAMESPACE_PREFIX	xmpp.features-module.html#STREAM_BAD_NAMESPACE_PREFIX
xmpp.features.SASL_INVALID_MECHANISM	xmpp.features-module.html#SASL_INVALID_MECHANISM
xmpp.features.ERR_UNEXPECTED_REQUEST	xmpp.features-module.html#ERR_UNEXPECTED_REQUEST
xmpp.features.ERR_RECIPIENT_UNAVAILABLE	xmpp.features-module.html#ERR_RECIPIENT_UNAVAILABLE
xmpp.features.SASL_TEMPORARY_AUTH_FAILURE	xmpp.features-module.html#SASL_TEMPORARY_AUTH_FAILURE
xmpp.features.setActivePrivacyList	xmpp.features-module.html#setActivePrivacyList
xmpp.features.ERR_PAYMENT_REQUIRED	xmpp.features-module.html#ERR_PAYMENT_REQUIRED
xmpp.features.STREAM_RESOURCE_CONSTRAINT	xmpp.features-module.html#STREAM_RESOURCE_CONSTRAINT
xmpp.features.ERR_ITEM_NOT_FOUND	xmpp.features-module.html#ERR_ITEM_NOT_FOUND
xmpp.features.discoverInfo	xmpp.features-module.html#discoverInfo
xmpp.features.STREAM_REMOTE_CONNECTION_FAILED	xmpp.features-module.html#STREAM_REMOTE_CONNECTION_FAILED
xmpp.features.STREAM_INVALID_ID	xmpp.features-module.html#STREAM_INVALID_ID
xmpp.features.setPrivacyList	xmpp.features-module.html#setPrivacyList
xmpp.features.ustr	xmpp.simplexml-module.html#ustr
xmpp.features.STREAM_RESTRICTED_XML	xmpp.features-module.html#STREAM_RESTRICTED_XML
xmpp.features.ERR_NOT_ACCEPTABLE	xmpp.features-module.html#ERR_NOT_ACCEPTABLE
xmpp.features.STREAM_UNSUPPORTED_STANZA_TYPE	xmpp.features-module.html#STREAM_UNSUPPORTED_STANZA_TYPE
xmpp.features.ERR_FORBIDDEN	xmpp.features-module.html#ERR_FORBIDDEN
xmpp.filetransfer	xmpp.filetransfer-module.html
xmpp.filetransfer.STREAM_NOT_AUTHORIZED	xmpp.filetransfer-module.html#STREAM_NOT_AUTHORIZED
xmpp.filetransfer.STREAM_CONNECTION_TIMEOUT	xmpp.filetransfer-module.html#STREAM_CONNECTION_TIMEOUT
xmpp.filetransfer.STREAM_IMPROPER_ADDRESSING	xmpp.filetransfer-module.html#STREAM_IMPROPER_ADDRESSING
xmpp.filetransfer.ERR_GONE	xmpp.filetransfer-module.html#ERR_GONE
xmpp.filetransfer.ERR_CONFLICT	xmpp.filetransfer-module.html#ERR_CONFLICT
xmpp.filetransfer.ERR_NOT_AUTHORIZED	xmpp.filetransfer-module.html#ERR_NOT_AUTHORIZED
xmpp.filetransfer.ERR_REGISTRATION_REQUIRED	xmpp.filetransfer-module.html#ERR_REGISTRATION_REQUIRED
xmpp.filetransfer.ERR_INTERNAL_SERVER_ERROR	xmpp.filetransfer-module.html#ERR_INTERNAL_SERVER_ERROR
xmpp.filetransfer.SASL_INCORRECT_ENCODING	xmpp.filetransfer-module.html#SASL_INCORRECT_ENCODING
xmpp.filetransfer.STREAM_UNSUPPORTED_ENCODING	xmpp.filetransfer-module.html#STREAM_UNSUPPORTED_ENCODING
xmpp.filetransfer.ERR_REDIRECT	xmpp.filetransfer-module.html#ERR_REDIRECT
xmpp.filetransfer.isErrorNode	xmpp.protocol-module.html#isErrorNode
xmpp.filetransfer.ERR_FEATURE_NOT_IMPLEMENTED	xmpp.filetransfer-module.html#ERR_FEATURE_NOT_IMPLEMENTED
xmpp.filetransfer.name	xmpp.filetransfer-module.html#name
xmpp.filetransfer.ERR_RESOURCE_CONSTRAINT	xmpp.filetransfer-module.html#ERR_RESOURCE_CONSTRAINT
xmpp.filetransfer.SASL_INVALID_AUTHZID	xmpp.filetransfer-module.html#SASL_INVALID_AUTHZID
xmpp.filetransfer.ERR_JID_MALFORMED	xmpp.filetransfer-module.html#ERR_JID_MALFORMED
xmpp.filetransfer.STREAM_CONFLICT	xmpp.filetransfer-module.html#STREAM_CONFLICT
xmpp.filetransfer.isResultNode	xmpp.protocol-module.html#isResultNode
xmpp.filetransfer.ERR_SERVICE_UNAVAILABLE	xmpp.filetransfer-module.html#ERR_SERVICE_UNAVAILABLE
xmpp.filetransfer.STREAM_UNDEFINED_CONDITION	xmpp.filetransfer-module.html#STREAM_UNDEFINED_CONDITION
xmpp.filetransfer.ERRORS	xmpp.filetransfer-module.html#ERRORS
xmpp.filetransfer.STREAM_BAD_FORMAT	xmpp.filetransfer-module.html#STREAM_BAD_FORMAT
xmpp.filetransfer.SASL_ABORTED	xmpp.filetransfer-module.html#SASL_ABORTED
xmpp.filetransfer.STREAM_HOST_GONE	xmpp.filetransfer-module.html#STREAM_HOST_GONE
xmpp.filetransfer.ERR_UNDEFINED_CONDITION	xmpp.filetransfer-module.html#ERR_UNDEFINED_CONDITION
xmpp.filetransfer.STREAM_INVALID_FROM	xmpp.filetransfer-module.html#STREAM_INVALID_FROM
xmpp.filetransfer.ERR_REMOTE_SERVER_TIMEOUT	xmpp.filetransfer-module.html#ERR_REMOTE_SERVER_TIMEOUT
xmpp.filetransfer.STREAM_SYSTEM_SHUTDOWN	xmpp.filetransfer-module.html#STREAM_SYSTEM_SHUTDOWN
xmpp.filetransfer.STREAM_INVALID_NAMESPACE	xmpp.filetransfer-module.html#STREAM_INVALID_NAMESPACE
xmpp.filetransfer.STREAM_UNSUPPORTED_VERSION	xmpp.filetransfer-module.html#STREAM_UNSUPPORTED_VERSION
xmpp.filetransfer.SASL_NOT_AUTHORIZED	xmpp.filetransfer-module.html#SASL_NOT_AUTHORIZED
xmpp.filetransfer.ERR_REMOTE_SERVER_NOT_FOUND	xmpp.filetransfer-module.html#ERR_REMOTE_SERVER_NOT_FOUND
xmpp.filetransfer.ERR_SUBSCRIPTION_REQUIRED	xmpp.filetransfer-module.html#ERR_SUBSCRIPTION_REQUIRED
xmpp.filetransfer.STREAM_INTERNAL_SERVER_ERROR	xmpp.filetransfer-module.html#STREAM_INTERNAL_SERVER_ERROR
xmpp.filetransfer.STREAM_INVALID_XML	xmpp.filetransfer-module.html#STREAM_INVALID_XML
xmpp.filetransfer.ERR_NOT_ALLOWED	xmpp.filetransfer-module.html#ERR_NOT_ALLOWED
xmpp.filetransfer.STREAM_HOST_UNKNOWN	xmpp.filetransfer-module.html#STREAM_HOST_UNKNOWN
xmpp.filetransfer.ERR_BAD_REQUEST	xmpp.filetransfer-module.html#ERR_BAD_REQUEST
xmpp.filetransfer.STREAM_POLICY_VIOLATION	xmpp.filetransfer-module.html#STREAM_POLICY_VIOLATION
xmpp.filetransfer.SASL_MECHANISM_TOO_WEAK	xmpp.filetransfer-module.html#SASL_MECHANISM_TOO_WEAK
xmpp.filetransfer.STREAM_XML_NOT_WELL_FORMED	xmpp.filetransfer-module.html#STREAM_XML_NOT_WELL_FORMED
xmpp.filetransfer.STREAM_SEE_OTHER_HOST	xmpp.filetransfer-module.html#STREAM_SEE_OTHER_HOST
xmpp.filetransfer.STREAM_BAD_NAMESPACE_PREFIX	xmpp.filetransfer-module.html#STREAM_BAD_NAMESPACE_PREFIX
xmpp.filetransfer.SASL_INVALID_MECHANISM	xmpp.filetransfer-module.html#SASL_INVALID_MECHANISM
xmpp.filetransfer.ERR_UNEXPECTED_REQUEST	xmpp.filetransfer-module.html#ERR_UNEXPECTED_REQUEST
xmpp.filetransfer.ERR_RECIPIENT_UNAVAILABLE	xmpp.filetransfer-module.html#ERR_RECIPIENT_UNAVAILABLE
xmpp.filetransfer.SASL_TEMPORARY_AUTH_FAILURE	xmpp.filetransfer-module.html#SASL_TEMPORARY_AUTH_FAILURE
xmpp.filetransfer.ERR_PAYMENT_REQUIRED	xmpp.filetransfer-module.html#ERR_PAYMENT_REQUIRED
xmpp.filetransfer.STREAM_RESTRICTED_XML	xmpp.filetransfer-module.html#STREAM_RESTRICTED_XML
xmpp.filetransfer.STREAM_RESOURCE_CONSTRAINT	xmpp.filetransfer-module.html#STREAM_RESOURCE_CONSTRAINT
xmpp.filetransfer.ERR_ITEM_NOT_FOUND	xmpp.filetransfer-module.html#ERR_ITEM_NOT_FOUND
xmpp.filetransfer.STREAM_REMOTE_CONNECTION_FAILED	xmpp.filetransfer-module.html#STREAM_REMOTE_CONNECTION_FAILED
xmpp.filetransfer.STREAM_INVALID_ID	xmpp.filetransfer-module.html#STREAM_INVALID_ID
xmpp.filetransfer.ustr	xmpp.simplexml-module.html#ustr
xmpp.filetransfer.ERR_NOT_ACCEPTABLE	xmpp.filetransfer-module.html#ERR_NOT_ACCEPTABLE
xmpp.filetransfer.STREAM_UNSUPPORTED_STANZA_TYPE	xmpp.filetransfer-module.html#STREAM_UNSUPPORTED_STANZA_TYPE
xmpp.filetransfer.ERR_FORBIDDEN	xmpp.filetransfer-module.html#ERR_FORBIDDEN
xmpp.jep0106	xmpp.jep0106-module.html
xmpp.jep0106.JIDEncode	xmpp.jep0106-module.html#JIDEncode
xmpp.jep0106.xep0106mapping	xmpp.jep0106-module.html#xep0106mapping
xmpp.jep0106.JIDDecode	xmpp.jep0106-module.html#JIDDecode
xmpp.protocol	xmpp.protocol-module.html
xmpp.protocol.NS_MUC_ADMIN	xmpp.protocol-module.html#NS_MUC_ADMIN
xmpp.protocol.STREAM_NOT_AUTHORIZED	xmpp.protocol-module.html#STREAM_NOT_AUTHORIZED
xmpp.protocol.NS_ADMIN_IDLE_USERS_NUM	xmpp.protocol-module.html#NS_ADMIN_IDLE_USERS_NUM
xmpp.protocol.NS_ADMIN_ADD_USER	xmpp.protocol-module.html#NS_ADMIN_ADD_USER
xmpp.protocol.STREAM_CONNECTION_TIMEOUT	xmpp.protocol-module.html#STREAM_CONNECTION_TIMEOUT
xmpp.protocol.STREAM_IMPROPER_ADDRESSING	xmpp.protocol-module.html#STREAM_IMPROPER_ADDRESSING
xmpp.protocol.NS_ADMIN_DISABLED_USERS_NUM	xmpp.protocol-module.html#NS_ADMIN_DISABLED_USERS_NUM
xmpp.protocol.ERR_GONE	xmpp.protocol-module.html#ERR_GONE
xmpp.protocol.NS_PHYSLOC	xmpp.protocol-module.html#NS_PHYSLOC
xmpp.protocol.ERR_CONFLICT	xmpp.protocol-module.html#ERR_CONFLICT
xmpp.protocol.NS_COMPRESS	xmpp.protocol-module.html#NS_COMPRESS
xmpp.protocol.NS_AGENTS	xmpp.protocol-module.html#NS_AGENTS
xmpp.protocol.NS_MOOD	xmpp.protocol-module.html#NS_MOOD
xmpp.protocol.ERR_NOT_AUTHORIZED	xmpp.protocol-module.html#ERR_NOT_AUTHORIZED
xmpp.protocol.NS_FILE	xmpp.protocol-module.html#NS_FILE
xmpp.protocol.ERR_REGISTRATION_REQUIRED	xmpp.protocol-module.html#ERR_REGISTRATION_REQUIRED
xmpp.protocol.ERR_INTERNAL_SERVER_ERROR	xmpp.protocol-module.html#ERR_INTERNAL_SERVER_ERROR
xmpp.protocol.SASL_INCORRECT_ENCODING	xmpp.protocol-module.html#SASL_INCORRECT_ENCODING
xmpp.protocol.NS_MUC_OWNER	xmpp.protocol-module.html#NS_MUC_OWNER
xmpp.protocol.NS_ADMIN_ACTIVE_USERS_NUM	xmpp.protocol-module.html#NS_ADMIN_ACTIVE_USERS_NUM
xmpp.protocol.NS_ACTIVITY	xmpp.protocol-module.html#NS_ACTIVITY
xmpp.protocol.NS_ADMIN_GET_USER_ROSTER	xmpp.protocol-module.html#NS_ADMIN_GET_USER_ROSTER
xmpp.protocol.NS_MUC_ROOMINFO	xmpp.protocol-module.html#NS_MUC_ROOMINFO
xmpp.protocol.NS_PRESENCE	xmpp.protocol-module.html#NS_PRESENCE
xmpp.protocol.STREAM_UNSUPPORTED_ENCODING	xmpp.protocol-module.html#STREAM_UNSUPPORTED_ENCODING
xmpp.protocol.NS_ADMIN_EDIT_BLACKLIST	xmpp.protocol-module.html#NS_ADMIN_EDIT_BLACKLIST
xmpp.protocol.NS_ADMIN_ONLINE_USERS_NUM	xmpp.protocol-module.html#NS_ADMIN_ONLINE_USERS_NUM
xmpp.protocol.NS_CHATSTATES	xmpp.protocol-module.html#NS_CHATSTATES
xmpp.protocol.ERR_REDIRECT	xmpp.protocol-module.html#ERR_REDIRECT
xmpp.protocol.isErrorNode	xmpp.protocol-module.html#isErrorNode
xmpp.protocol.NS_GROUPCHAT	xmpp.protocol-module.html#NS_GROUPCHAT
xmpp.protocol.ERR_FEATURE_NOT_IMPLEMENTED	xmpp.protocol-module.html#ERR_FEATURE_NOT_IMPLEMENTED
xmpp.protocol.NS_GATEWAY	xmpp.protocol-module.html#NS_GATEWAY
xmpp.protocol.NS_DISCO_ITEMS	xmpp.protocol-module.html#NS_DISCO_ITEMS
xmpp.protocol.name	xmpp.protocol-module.html#name
xmpp.protocol.NS_BIND	xmpp.protocol-module.html#NS_BIND
xmpp.protocol.NS_XHTML_IM	xmpp.protocol-module.html#NS_XHTML_IM
xmpp.protocol.NS_XMPP_STREAMS	xmpp.protocol-module.html#NS_XMPP_STREAMS
xmpp.protocol.NS_IQ	xmpp.protocol-module.html#NS_IQ
xmpp.protocol.ERR_RESOURCE_CONSTRAINT	xmpp.protocol-module.html#ERR_RESOURCE_CONSTRAINT
xmpp.protocol.NS_CLIENT	xmpp.protocol-module.html#NS_CLIENT
xmpp.protocol.SASL_INVALID_AUTHZID	xmpp.protocol-module.html#SASL_INVALID_AUTHZID
xmpp.protocol.NS_EVENT	xmpp.protocol-module.html#NS_EVENT
xmpp.protocol.NS_AVATAR	xmpp.protocol-module.html#NS_AVATAR
xmpp.protocol.NS_DATA_LAYOUT	xmpp.protocol-module.html#NS_DATA_LAYOUT
xmpp.protocol.NS_ADMIN_DELETE_WELCOME	xmpp.protocol-module.html#NS_ADMIN_DELETE_WELCOME
xmpp.protocol.stream_exceptions	xmpp.protocol-module.html#stream_exceptions
xmpp.protocol.xmpp_stanza_error_conditions	xmpp.protocol-module.html#xmpp_stanza_error_conditions
xmpp.protocol.NS_ROSTER	xmpp.protocol-module.html#NS_ROSTER
xmpp.protocol.NS_STANZAS	xmpp.protocol-module.html#NS_STANZAS
xmpp.protocol.NS_ADMIN_EDIT_ADMIN	xmpp.protocol-module.html#NS_ADMIN_EDIT_ADMIN
xmpp.protocol.ERR_JID_MALFORMED	xmpp.protocol-module.html#ERR_JID_MALFORMED
xmpp.protocol.STREAM_CONFLICT	xmpp.protocol-module.html#STREAM_CONFLICT
xmpp.protocol.isResultNode	xmpp.protocol-module.html#isResultNode
xmpp.protocol.NS_MUC_REQUEST	xmpp.protocol-module.html#NS_MUC_REQUEST
xmpp.protocol.NS_ADMIN_DELETE_MOTD	xmpp.protocol-module.html#NS_ADMIN_DELETE_MOTD
xmpp.protocol.ERR_SERVICE_UNAVAILABLE	xmpp.protocol-module.html#ERR_SERVICE_UNAVAILABLE
xmpp.protocol.NS_AMP	xmpp.protocol-module.html#NS_AMP
xmpp.protocol.STREAM_UNDEFINED_CONDITION	xmpp.protocol-module.html#STREAM_UNDEFINED_CONDITION
xmpp.protocol.NS_DISCO	xmpp.protocol-module.html#NS_DISCO
xmpp.protocol.NS_MUC_ROOMS	xmpp.protocol-module.html#NS_MUC_ROOMS
xmpp.protocol.ERRORS	xmpp.protocol-module.html#ERRORS
xmpp.protocol.NS_ADMIN_ACTIVE_USERS_LIST	xmpp.protocol-module.html#NS_ADMIN_ACTIVE_USERS_LIST
xmpp.protocol.STREAM_BAD_FORMAT	xmpp.protocol-module.html#STREAM_BAD_FORMAT
xmpp.protocol.NS_PUBSUB	xmpp.protocol-module.html#NS_PUBSUB
xmpp.protocol.NS_DIALBACK	xmpp.protocol-module.html#NS_DIALBACK
xmpp.protocol.SASL_ABORTED	xmpp.protocol-module.html#SASL_ABORTED
xmpp.protocol.NS_AUTH	xmpp.protocol-module.html#NS_AUTH
xmpp.protocol.NS_VCARD	xmpp.protocol-module.html#NS_VCARD
xmpp.protocol.STREAM_HOST_GONE	xmpp.protocol-module.html#STREAM_HOST_GONE
xmpp.protocol.NS_SI	xmpp.protocol-module.html#NS_SI
xmpp.protocol.NS_SASL	xmpp.protocol-module.html#NS_SASL
xmpp.protocol.NS_ADMIN_END_USER_SESSION	xmpp.protocol-module.html#NS_ADMIN_END_USER_SESSION
xmpp.protocol.ERR_UNDEFINED_CONDITION	xmpp.protocol-module.html#ERR_UNDEFINED_CONDITION
xmpp.protocol.STREAM_INVALID_FROM	xmpp.protocol-module.html#STREAM_INVALID_FROM
xmpp.protocol.NS_CAPS	xmpp.protocol-module.html#NS_CAPS
xmpp.protocol.NS_ADMIN_SHUTDOWN	xmpp.protocol-module.html#NS_ADMIN_SHUTDOWN
xmpp.protocol.NS_AMP_ERRORS	xmpp.protocol-module.html#NS_AMP_ERRORS
xmpp.protocol.NS_BROWSE	xmpp.protocol-module.html#NS_BROWSE
xmpp.protocol.NS_ROSTERX	xmpp.protocol-module.html#NS_ROSTERX
xmpp.protocol.NS_TLS	xmpp.protocol-module.html#NS_TLS
xmpp.protocol.NS_DATA	xmpp.protocol-module.html#NS_DATA
xmpp.protocol.NS_SERVER	xmpp.protocol-module.html#NS_SERVER
xmpp.protocol.NS_SESSION	xmpp.protocol-module.html#NS_SESSION
xmpp.protocol.ERR_REMOTE_SERVER_TIMEOUT	xmpp.protocol-module.html#ERR_REMOTE_SERVER_TIMEOUT
xmpp.protocol.NS_IBB	xmpp.protocol-module.html#NS_IBB
xmpp.protocol.NS_ADMIN_GET_USER_PASSWORD	xmpp.protocol-module.html#NS_ADMIN_GET_USER_PASSWORD
xmpp.protocol.NS_ADMIN_ONLINE_USERS_LIST	xmpp.protocol-module.html#NS_ADMIN_ONLINE_USERS_LIST
xmpp.protocol.NS_ADMIN_ANNOUNCE	xmpp.protocol-module.html#NS_ADMIN_ANNOUNCE
xmpp.protocol.NS_ADMIN_USER_STATS	xmpp.protocol-module.html#NS_ADMIN_USER_STATS
xmpp.protocol.NS_PRIVACY	xmpp.protocol-module.html#NS_PRIVACY
xmpp.protocol.STREAM_SYSTEM_SHUTDOWN	xmpp.protocol-module.html#STREAM_SYSTEM_SHUTDOWN
xmpp.protocol.STREAM_INVALID_NAMESPACE	xmpp.protocol-module.html#STREAM_INVALID_NAMESPACE
xmpp.protocol.NS_FEATURE	xmpp.protocol-module.html#NS_FEATURE
xmpp.protocol.STREAM_UNSUPPORTED_VERSION	xmpp.protocol-module.html#STREAM_UNSUPPORTED_VERSION
xmpp.protocol.SASL_NOT_AUTHORIZED	xmpp.protocol-module.html#SASL_NOT_AUTHORIZED
xmpp.protocol.ERR_REMOTE_SERVER_NOT_FOUND	xmpp.protocol-module.html#ERR_REMOTE_SERVER_NOT_FOUND
xmpp.protocol.NS_ADMIN_DISABLED_USERS_LIST	xmpp.protocol-module.html#NS_ADMIN_DISABLED_USERS_LIST
xmpp.protocol.NS_ADMIN_RESTART	xmpp.protocol-module.html#NS_ADMIN_RESTART
xmpp.protocol.NS_WAITINGLIST	xmpp.protocol-module.html#NS_WAITINGLIST
xmpp.protocol.NS_VERSION	xmpp.protocol-module.html#NS_VERSION
xmpp.protocol.ERR_SUBSCRIPTION_REQUIRED	xmpp.protocol-module.html#ERR_SUBSCRIPTION_REQUIRED
xmpp.protocol.STREAM_INTERNAL_SERVER_ERROR	xmpp.protocol-module.html#STREAM_INTERNAL_SERVER_ERROR
xmpp.protocol.NS_COMPONENT_1	xmpp.protocol-module.html#NS_COMPONENT_1
xmpp.protocol.NS_MUC_TRAFIC	xmpp.protocol-module.html#NS_MUC_TRAFIC
xmpp.protocol.NS_HTTP_BIND	xmpp.protocol-module.html#NS_HTTP_BIND
xmpp.protocol.NS_MUC_ROOMCONFIG	xmpp.protocol-module.html#NS_MUC_ROOMCONFIG
xmpp.protocol.STREAM_INVALID_XML	xmpp.protocol-module.html#STREAM_INVALID_XML
xmpp.protocol.NS_INVISIBLE	xmpp.protocol-module.html#NS_INVISIBLE
xmpp.protocol.NS_ADMIN_REGISTERED_USERS_NUM	xmpp.protocol-module.html#NS_ADMIN_REGISTERED_USERS_NUM
xmpp.protocol.NS_PRIVATE	xmpp.protocol-module.html#NS_PRIVATE
xmpp.protocol.NS_ADMIN_DISABLE_USER	xmpp.protocol-module.html#NS_ADMIN_DISABLE_USER
xmpp.protocol.ERR_NOT_ALLOWED	xmpp.protocol-module.html#ERR_NOT_ALLOWED
xmpp.protocol._errorcodes	xmpp.protocol-module.html#_errorcodes
xmpp.protocol.sasl_error_conditions	xmpp.protocol-module.html#sasl_error_conditions
xmpp.protocol.NS_OFFLINE	xmpp.protocol-module.html#NS_OFFLINE
xmpp.protocol.NS_MUC_USER	xmpp.protocol-module.html#NS_MUC_USER
xmpp.protocol.NS_STREAMS	xmpp.protocol-module.html#NS_STREAMS
xmpp.protocol.NS_ADMIN_REGISTERED_USERS_LIST	xmpp.protocol-module.html#NS_ADMIN_REGISTERED_USERS_LIST
xmpp.protocol.STREAM_HOST_UNKNOWN	xmpp.protocol-module.html#STREAM_HOST_UNKNOWN
xmpp.protocol.ERR_BAD_REQUEST	xmpp.protocol-module.html#ERR_BAD_REQUEST
xmpp.protocol.NS_ADMIN_SET_WELCOME	xmpp.protocol-module.html#NS_ADMIN_SET_WELCOME
xmpp.protocol.NS_ADMIN_CHANGE_USER_PASSWORD	xmpp.protocol-module.html#NS_ADMIN_CHANGE_USER_PASSWORD
xmpp.protocol.NS_DELAY	xmpp.protocol-module.html#NS_DELAY
xmpp.protocol.NS_ENCRYPTED	xmpp.protocol-module.html#NS_ENCRYPTED
xmpp.protocol.NS_RPC	xmpp.protocol-module.html#NS_RPC
xmpp.protocol.NS_SIGNED	xmpp.protocol-module.html#NS_SIGNED
xmpp.protocol.NS_ADMIN_REENABLE_USER	xmpp.protocol-module.html#NS_ADMIN_REENABLE_USER
xmpp.protocol.NS_ADMIN	xmpp.protocol-module.html#NS_ADMIN
xmpp.protocol.NS_MESSAGE	xmpp.protocol-module.html#NS_MESSAGE
xmpp.protocol.NS_ADMIN_DELETE_USER	xmpp.protocol-module.html#NS_ADMIN_DELETE_USER
xmpp.protocol.SASL_MECHANISM_TOO_WEAK	xmpp.protocol-module.html#SASL_MECHANISM_TOO_WEAK
xmpp.protocol.STREAM_XML_NOT_WELL_FORMED	xmpp.protocol-module.html#STREAM_XML_NOT_WELL_FORMED
xmpp.protocol.STREAM_POLICY_VIOLATION	xmpp.protocol-module.html#STREAM_POLICY_VIOLATION
xmpp.protocol.NS_REGISTER	xmpp.protocol-module.html#NS_REGISTER
xmpp.protocol.STREAM_SEE_OTHER_HOST	xmpp.protocol-module.html#STREAM_SEE_OTHER_HOST
xmpp.protocol.NS_BYTESTREAM	xmpp.protocol-module.html#NS_BYTESTREAM
xmpp.protocol.NS_VACATION	xmpp.protocol-module.html#NS_VACATION
xmpp.protocol.STREAM_BAD_NAMESPACE_PREFIX	xmpp.protocol-module.html#STREAM_BAD_NAMESPACE_PREFIX
xmpp.protocol.NS_GEOLOC	xmpp.protocol-module.html#NS_GEOLOC
xmpp.protocol.SASL_INVALID_MECHANISM	xmpp.protocol-module.html#SASL_INVALID_MECHANISM
xmpp.protocol.NS_MUC_REGISTER	xmpp.protocol-module.html#NS_MUC_REGISTER
xmpp.protocol.ERR_UNEXPECTED_REQUEST	xmpp.protocol-module.html#ERR_UNEXPECTED_REQUEST
xmpp.protocol.NS_ADMIN_IDLE_USERS_LIST	xmpp.protocol-module.html#NS_ADMIN_IDLE_USERS_LIST
xmpp.protocol.NS_DATA_VALIDATE	xmpp.protocol-module.html#NS_DATA_VALIDATE
xmpp.protocol.ERR_RECIPIENT_UNAVAILABLE	xmpp.protocol-module.html#ERR_RECIPIENT_UNAVAILABLE
xmpp.protocol.SASL_TEMPORARY_AUTH_FAILURE	xmpp.protocol-module.html#SASL_TEMPORARY_AUTH_FAILURE
xmpp.protocol.xmpp_stream_error_conditions	xmpp.protocol-module.html#xmpp_stream_error_conditions
xmpp.protocol.NS_COMMANDS	xmpp.protocol-module.html#NS_COMMANDS
xmpp.protocol.ERR_PAYMENT_REQUIRED	xmpp.protocol-module.html#ERR_PAYMENT_REQUIRED
xmpp.protocol.NS_ADMIN_SET_MOTD	xmpp.protocol-module.html#NS_ADMIN_SET_MOTD
xmpp.protocol.STREAM_RESOURCE_CONSTRAINT	xmpp.protocol-module.html#STREAM_RESOURCE_CONSTRAINT
xmpp.protocol.NS_SI_PUB	xmpp.protocol-module.html#NS_SI_PUB
xmpp.protocol.NS_MUC	xmpp.protocol-module.html#NS_MUC
xmpp.protocol.NS_ADMIN_EDIT_MOTD	xmpp.protocol-module.html#NS_ADMIN_EDIT_MOTD
xmpp.protocol.ERR_ITEM_NOT_FOUND	xmpp.protocol-module.html#ERR_ITEM_NOT_FOUND
xmpp.protocol.NS_TIME	xmpp.protocol-module.html#NS_TIME
xmpp.protocol.NS_SEARCH	xmpp.protocol-module.html#NS_SEARCH
xmpp.protocol.STREAM_REMOTE_CONNECTION_FAILED	xmpp.protocol-module.html#STREAM_REMOTE_CONNECTION_FAILED
xmpp.protocol.NS_ADMIN_EDIT_WHITELIST	xmpp.protocol-module.html#NS_ADMIN_EDIT_WHITELIST
xmpp.protocol.NS_ADDRESS	xmpp.protocol-module.html#NS_ADDRESS
xmpp.protocol.NS_COMPONENT_ACCEPT	xmpp.protocol-module.html#NS_COMPONENT_ACCEPT
xmpp.protocol.STREAM_INVALID_ID	xmpp.protocol-module.html#STREAM_INVALID_ID
xmpp.protocol.NS_MUC_UNIQUE	xmpp.protocol-module.html#NS_MUC_UNIQUE
xmpp.protocol.ustr	xmpp.simplexml-module.html#ustr
xmpp.protocol.STREAM_RESTRICTED_XML	xmpp.protocol-module.html#STREAM_RESTRICTED_XML
xmpp.protocol.NS_DISCO_INFO	xmpp.protocol-module.html#NS_DISCO_INFO
xmpp.protocol.NS_LAST	xmpp.protocol-module.html#NS_LAST
xmpp.protocol.NS_ADMIN_GET_USER_LASTLOGIN	xmpp.protocol-module.html#NS_ADMIN_GET_USER_LASTLOGIN
xmpp.protocol.ERR_NOT_ACCEPTABLE	xmpp.protocol-module.html#ERR_NOT_ACCEPTABLE
xmpp.protocol.STREAM_UNSUPPORTED_STANZA_TYPE	xmpp.protocol-module.html#STREAM_UNSUPPORTED_STANZA_TYPE
xmpp.protocol.ERR_FORBIDDEN	xmpp.protocol-module.html#ERR_FORBIDDEN
xmpp.roster	xmpp.roster-module.html
xmpp.roster.STREAM_NOT_AUTHORIZED	xmpp.roster-module.html#STREAM_NOT_AUTHORIZED
xmpp.roster.STREAM_CONNECTION_TIMEOUT	xmpp.roster-module.html#STREAM_CONNECTION_TIMEOUT
xmpp.roster.STREAM_IMPROPER_ADDRESSING	xmpp.roster-module.html#STREAM_IMPROPER_ADDRESSING
xmpp.roster.ERR_GONE	xmpp.roster-module.html#ERR_GONE
xmpp.roster.ERR_CONFLICT	xmpp.roster-module.html#ERR_CONFLICT
xmpp.roster.ERR_NOT_AUTHORIZED	xmpp.roster-module.html#ERR_NOT_AUTHORIZED
xmpp.roster.ERR_REGISTRATION_REQUIRED	xmpp.roster-module.html#ERR_REGISTRATION_REQUIRED
xmpp.roster.ERR_INTERNAL_SERVER_ERROR	xmpp.roster-module.html#ERR_INTERNAL_SERVER_ERROR
xmpp.roster.SASL_INCORRECT_ENCODING	xmpp.roster-module.html#SASL_INCORRECT_ENCODING
xmpp.roster.STREAM_UNSUPPORTED_ENCODING	xmpp.roster-module.html#STREAM_UNSUPPORTED_ENCODING
xmpp.roster.ERR_REDIRECT	xmpp.roster-module.html#ERR_REDIRECT
xmpp.roster.isErrorNode	xmpp.protocol-module.html#isErrorNode
xmpp.roster.ERR_FEATURE_NOT_IMPLEMENTED	xmpp.roster-module.html#ERR_FEATURE_NOT_IMPLEMENTED
xmpp.roster.name	xmpp.roster-module.html#name
xmpp.roster.ERR_RESOURCE_CONSTRAINT	xmpp.roster-module.html#ERR_RESOURCE_CONSTRAINT
xmpp.roster.SASL_INVALID_AUTHZID	xmpp.roster-module.html#SASL_INVALID_AUTHZID
xmpp.roster.ERR_JID_MALFORMED	xmpp.roster-module.html#ERR_JID_MALFORMED
xmpp.roster.STREAM_CONFLICT	xmpp.roster-module.html#STREAM_CONFLICT
xmpp.roster.isResultNode	xmpp.protocol-module.html#isResultNode
xmpp.roster.ERR_SERVICE_UNAVAILABLE	xmpp.roster-module.html#ERR_SERVICE_UNAVAILABLE
xmpp.roster.STREAM_UNDEFINED_CONDITION	xmpp.roster-module.html#STREAM_UNDEFINED_CONDITION
xmpp.roster.ERRORS	xmpp.roster-module.html#ERRORS
xmpp.roster.STREAM_BAD_FORMAT	xmpp.roster-module.html#STREAM_BAD_FORMAT
xmpp.roster.SASL_ABORTED	xmpp.roster-module.html#SASL_ABORTED
xmpp.roster.STREAM_HOST_GONE	xmpp.roster-module.html#STREAM_HOST_GONE
xmpp.roster.ERR_UNDEFINED_CONDITION	xmpp.roster-module.html#ERR_UNDEFINED_CONDITION
xmpp.roster.STREAM_INVALID_FROM	xmpp.roster-module.html#STREAM_INVALID_FROM
xmpp.roster.ERR_REMOTE_SERVER_TIMEOUT	xmpp.roster-module.html#ERR_REMOTE_SERVER_TIMEOUT
xmpp.roster.STREAM_SYSTEM_SHUTDOWN	xmpp.roster-module.html#STREAM_SYSTEM_SHUTDOWN
xmpp.roster.STREAM_INVALID_NAMESPACE	xmpp.roster-module.html#STREAM_INVALID_NAMESPACE
xmpp.roster.STREAM_UNSUPPORTED_VERSION	xmpp.roster-module.html#STREAM_UNSUPPORTED_VERSION
xmpp.roster.SASL_NOT_AUTHORIZED	xmpp.roster-module.html#SASL_NOT_AUTHORIZED
xmpp.roster.ERR_REMOTE_SERVER_NOT_FOUND	xmpp.roster-module.html#ERR_REMOTE_SERVER_NOT_FOUND
xmpp.roster.ERR_SUBSCRIPTION_REQUIRED	xmpp.roster-module.html#ERR_SUBSCRIPTION_REQUIRED
xmpp.roster.STREAM_INTERNAL_SERVER_ERROR	xmpp.roster-module.html#STREAM_INTERNAL_SERVER_ERROR
xmpp.roster.STREAM_INVALID_XML	xmpp.roster-module.html#STREAM_INVALID_XML
xmpp.roster.ERR_NOT_ALLOWED	xmpp.roster-module.html#ERR_NOT_ALLOWED
xmpp.roster.STREAM_HOST_UNKNOWN	xmpp.roster-module.html#STREAM_HOST_UNKNOWN
xmpp.roster.ERR_BAD_REQUEST	xmpp.roster-module.html#ERR_BAD_REQUEST
xmpp.roster.SASL_MECHANISM_TOO_WEAK	xmpp.roster-module.html#SASL_MECHANISM_TOO_WEAK
xmpp.roster.STREAM_XML_NOT_WELL_FORMED	xmpp.roster-module.html#STREAM_XML_NOT_WELL_FORMED
xmpp.roster.STREAM_POLICY_VIOLATION	xmpp.roster-module.html#STREAM_POLICY_VIOLATION
xmpp.roster.STREAM_SEE_OTHER_HOST	xmpp.roster-module.html#STREAM_SEE_OTHER_HOST
xmpp.roster.STREAM_BAD_NAMESPACE_PREFIX	xmpp.roster-module.html#STREAM_BAD_NAMESPACE_PREFIX
xmpp.roster.SASL_INVALID_MECHANISM	xmpp.roster-module.html#SASL_INVALID_MECHANISM
xmpp.roster.ERR_UNEXPECTED_REQUEST	xmpp.roster-module.html#ERR_UNEXPECTED_REQUEST
xmpp.roster.ERR_RECIPIENT_UNAVAILABLE	xmpp.roster-module.html#ERR_RECIPIENT_UNAVAILABLE
xmpp.roster.SASL_TEMPORARY_AUTH_FAILURE	xmpp.roster-module.html#SASL_TEMPORARY_AUTH_FAILURE
xmpp.roster.ERR_PAYMENT_REQUIRED	xmpp.roster-module.html#ERR_PAYMENT_REQUIRED
xmpp.roster.STREAM_RESTRICTED_XML	xmpp.roster-module.html#STREAM_RESTRICTED_XML
xmpp.roster.STREAM_RESOURCE_CONSTRAINT	xmpp.roster-module.html#STREAM_RESOURCE_CONSTRAINT
xmpp.roster.ERR_ITEM_NOT_FOUND	xmpp.roster-module.html#ERR_ITEM_NOT_FOUND
xmpp.roster.STREAM_REMOTE_CONNECTION_FAILED	xmpp.roster-module.html#STREAM_REMOTE_CONNECTION_FAILED
xmpp.roster.STREAM_INVALID_ID	xmpp.roster-module.html#STREAM_INVALID_ID
xmpp.roster.ustr	xmpp.simplexml-module.html#ustr
xmpp.roster.ERR_NOT_ACCEPTABLE	xmpp.roster-module.html#ERR_NOT_ACCEPTABLE
xmpp.roster.STREAM_UNSUPPORTED_STANZA_TYPE	xmpp.roster-module.html#STREAM_UNSUPPORTED_STANZA_TYPE
xmpp.roster.ERR_FORBIDDEN	xmpp.roster-module.html#ERR_FORBIDDEN
xmpp.session	xmpp.session-module.html
xmpp.session.STREAM_NOT_AUTHORIZED	xmpp.session-module.html#STREAM_NOT_AUTHORIZED
xmpp.session.STREAM_CONNECTION_TIMEOUT	xmpp.session-module.html#STREAM_CONNECTION_TIMEOUT
xmpp.session.STREAM_IMPROPER_ADDRESSING	xmpp.session-module.html#STREAM_IMPROPER_ADDRESSING
xmpp.session.ERR_GONE	xmpp.session-module.html#ERR_GONE
xmpp.session.ERR_CONFLICT	xmpp.session-module.html#ERR_CONFLICT
xmpp.session.ERR_NOT_AUTHORIZED	xmpp.session-module.html#ERR_NOT_AUTHORIZED
xmpp.session.STREAM__NOT_OPENED	xmpp.session-module.html#STREAM__NOT_OPENED
xmpp.session.ERR_REGISTRATION_REQUIRED	xmpp.session-module.html#ERR_REGISTRATION_REQUIRED
xmpp.session.ERR_INTERNAL_SERVER_ERROR	xmpp.session-module.html#ERR_INTERNAL_SERVER_ERROR
xmpp.session.SASL_INCORRECT_ENCODING	xmpp.session-module.html#SASL_INCORRECT_ENCODING
xmpp.session.STREAM_UNSUPPORTED_ENCODING	xmpp.session-module.html#STREAM_UNSUPPORTED_ENCODING
xmpp.session.ERR_REDIRECT	xmpp.session-module.html#ERR_REDIRECT
xmpp.session.isErrorNode	xmpp.protocol-module.html#isErrorNode
xmpp.session.ERR_FEATURE_NOT_IMPLEMENTED	xmpp.session-module.html#ERR_FEATURE_NOT_IMPLEMENTED
xmpp.session.name	xmpp.session-module.html#name
xmpp.session.ERR_RESOURCE_CONSTRAINT	xmpp.session-module.html#ERR_RESOURCE_CONSTRAINT
xmpp.session.SASL_INVALID_AUTHZID	xmpp.session-module.html#SASL_INVALID_AUTHZID
xmpp.session.ERR_JID_MALFORMED	xmpp.session-module.html#ERR_JID_MALFORMED
xmpp.session.SESSION_CLOSED	xmpp.session-module.html#SESSION_CLOSED
xmpp.session.isResultNode	xmpp.protocol-module.html#isResultNode
xmpp.session.STREAM_HOST_UNKNOWN	xmpp.session-module.html#STREAM_HOST_UNKNOWN
xmpp.session.ERR_SERVICE_UNAVAILABLE	xmpp.session-module.html#ERR_SERVICE_UNAVAILABLE
xmpp.session.STREAM_UNDEFINED_CONDITION	xmpp.session-module.html#STREAM_UNDEFINED_CONDITION
xmpp.session.ERRORS	xmpp.session-module.html#ERRORS
xmpp.session.STREAM_BAD_FORMAT	xmpp.session-module.html#STREAM_BAD_FORMAT
xmpp.session.SASL_ABORTED	xmpp.session-module.html#SASL_ABORTED
xmpp.session.STREAM__CLOSING	xmpp.session-module.html#STREAM__CLOSING
xmpp.session.STREAM_HOST_GONE	xmpp.session-module.html#STREAM_HOST_GONE
xmpp.session.ERR_UNDEFINED_CONDITION	xmpp.session-module.html#ERR_UNDEFINED_CONDITION
xmpp.session.STREAM_INVALID_FROM	xmpp.session-module.html#STREAM_INVALID_FROM
xmpp.session.SESSION_AUTHED	xmpp.session-module.html#SESSION_AUTHED
xmpp.session.SESSION_BOUND	xmpp.session-module.html#SESSION_BOUND
xmpp.session.ERR_REMOTE_SERVER_TIMEOUT	xmpp.session-module.html#ERR_REMOTE_SERVER_TIMEOUT
xmpp.session.STREAM_SYSTEM_SHUTDOWN	xmpp.session-module.html#STREAM_SYSTEM_SHUTDOWN
xmpp.session.STREAM_INVALID_NAMESPACE	xmpp.session-module.html#STREAM_INVALID_NAMESPACE
xmpp.session.STREAM_UNSUPPORTED_VERSION	xmpp.session-module.html#STREAM_UNSUPPORTED_VERSION
xmpp.session.SASL_NOT_AUTHORIZED	xmpp.session-module.html#SASL_NOT_AUTHORIZED
xmpp.session.ERR_REMOTE_SERVER_NOT_FOUND	xmpp.session-module.html#ERR_REMOTE_SERVER_NOT_FOUND
xmpp.session.ERR_SUBSCRIPTION_REQUIRED	xmpp.session-module.html#ERR_SUBSCRIPTION_REQUIRED
xmpp.session.STREAM_INTERNAL_SERVER_ERROR	xmpp.session-module.html#STREAM_INTERNAL_SERVER_ERROR
xmpp.session.SESSION_OPENED	xmpp.session-module.html#SESSION_OPENED
xmpp.session.STREAM_INVALID_XML	xmpp.session-module.html#STREAM_INVALID_XML
xmpp.session.ERR_NOT_ALLOWED	xmpp.session-module.html#ERR_NOT_ALLOWED
xmpp.session.STREAM__CLOSED	xmpp.session-module.html#STREAM__CLOSED
xmpp.session.STREAM_CONFLICT	xmpp.session-module.html#STREAM_CONFLICT
xmpp.session.SOCKET_ALIVE	xmpp.session-module.html#SOCKET_ALIVE
xmpp.session.ERR_BAD_REQUEST	xmpp.session-module.html#ERR_BAD_REQUEST
xmpp.session.SASL_MECHANISM_TOO_WEAK	xmpp.session-module.html#SASL_MECHANISM_TOO_WEAK
xmpp.session.STREAM_XML_NOT_WELL_FORMED	xmpp.session-module.html#STREAM_XML_NOT_WELL_FORMED
xmpp.session.STREAM_POLICY_VIOLATION	xmpp.session-module.html#STREAM_POLICY_VIOLATION
xmpp.session.STREAM_SEE_OTHER_HOST	xmpp.session-module.html#STREAM_SEE_OTHER_HOST
xmpp.session.SOCKET_UNCONNECTED	xmpp.session-module.html#SOCKET_UNCONNECTED
xmpp.session.STREAM_BAD_NAMESPACE_PREFIX	xmpp.session-module.html#STREAM_BAD_NAMESPACE_PREFIX
xmpp.session.SASL_INVALID_MECHANISM	xmpp.session-module.html#SASL_INVALID_MECHANISM
xmpp.session.SESSION_NOT_AUTHED	xmpp.session-module.html#SESSION_NOT_AUTHED
xmpp.session.ERR_UNEXPECTED_REQUEST	xmpp.session-module.html#ERR_UNEXPECTED_REQUEST
xmpp.session.ERR_RECIPIENT_UNAVAILABLE	xmpp.session-module.html#ERR_RECIPIENT_UNAVAILABLE
xmpp.session.SASL_TEMPORARY_AUTH_FAILURE	xmpp.session-module.html#SASL_TEMPORARY_AUTH_FAILURE
xmpp.session.__version__	xmpp.session-module.html#__version__
xmpp.session.ERR_PAYMENT_REQUIRED	xmpp.session-module.html#ERR_PAYMENT_REQUIRED
xmpp.session.STREAM_RESOURCE_CONSTRAINT	xmpp.session-module.html#STREAM_RESOURCE_CONSTRAINT
xmpp.session.ERR_ITEM_NOT_FOUND	xmpp.session-module.html#ERR_ITEM_NOT_FOUND
xmpp.session.STREAM__OPENED	xmpp.session-module.html#STREAM__OPENED
xmpp.session.STREAM_REMOTE_CONNECTION_FAILED	xmpp.session-module.html#STREAM_REMOTE_CONNECTION_FAILED
xmpp.session.STREAM_INVALID_ID	xmpp.session-module.html#STREAM_INVALID_ID
xmpp.session.ustr	xmpp.simplexml-module.html#ustr
xmpp.session.STREAM_RESTRICTED_XML	xmpp.session-module.html#STREAM_RESTRICTED_XML
xmpp.session.ERR_NOT_ACCEPTABLE	xmpp.session-module.html#ERR_NOT_ACCEPTABLE
xmpp.session.SOCKET_DEAD	xmpp.session-module.html#SOCKET_DEAD
xmpp.session.STREAM_UNSUPPORTED_STANZA_TYPE	xmpp.session-module.html#STREAM_UNSUPPORTED_STANZA_TYPE
xmpp.session.ERR_FORBIDDEN	xmpp.session-module.html#ERR_FORBIDDEN
xmpp.simplexml	xmpp.simplexml-module.html
xmpp.simplexml.BadXML2Node	xmpp.simplexml-module.html#BadXML2Node
xmpp.simplexml.ustr	xmpp.simplexml-module.html#ustr
xmpp.simplexml.ENCODING	xmpp.simplexml-module.html#ENCODING
xmpp.simplexml.DBG_NODEBUILDER	xmpp.simplexml-module.html#DBG_NODEBUILDER
xmpp.simplexml.XMLescape	xmpp.simplexml-module.html#XMLescape
xmpp.simplexml.XML2Node	xmpp.simplexml-module.html#XML2Node
xmpp.transports	xmpp.transports-module.html
xmpp.transports.STREAM_NOT_AUTHORIZED	xmpp.transports-module.html#STREAM_NOT_AUTHORIZED
xmpp.transports.DATA_SENT	xmpp.transports-module.html#DATA_SENT
xmpp.transports.STREAM_CONNECTION_TIMEOUT	xmpp.transports-module.html#STREAM_CONNECTION_TIMEOUT
xmpp.transports.STREAM_IMPROPER_ADDRESSING	xmpp.transports-module.html#STREAM_IMPROPER_ADDRESSING
xmpp.transports.ERR_GONE	xmpp.transports-module.html#ERR_GONE
xmpp.transports.ERR_CONFLICT	xmpp.transports-module.html#ERR_CONFLICT
xmpp.transports.ERR_NOT_AUTHORIZED	xmpp.transports-module.html#ERR_NOT_AUTHORIZED
xmpp.transports.ERR_REGISTRATION_REQUIRED	xmpp.transports-module.html#ERR_REGISTRATION_REQUIRED
xmpp.transports.ERR_INTERNAL_SERVER_ERROR	xmpp.transports-module.html#ERR_INTERNAL_SERVER_ERROR
xmpp.transports.SASL_INCORRECT_ENCODING	xmpp.transports-module.html#SASL_INCORRECT_ENCODING
xmpp.transports.STREAM_UNSUPPORTED_ENCODING	xmpp.transports-module.html#STREAM_UNSUPPORTED_ENCODING
xmpp.transports.ERR_REDIRECT	xmpp.transports-module.html#ERR_REDIRECT
xmpp.transports.isErrorNode	xmpp.protocol-module.html#isErrorNode
xmpp.transports.ERR_FEATURE_NOT_IMPLEMENTED	xmpp.transports-module.html#ERR_FEATURE_NOT_IMPLEMENTED
xmpp.transports.name	xmpp.transports-module.html#name
xmpp.transports.HAVE_PYDNS	xmpp.transports-module.html#HAVE_PYDNS
xmpp.transports.ERR_RESOURCE_CONSTRAINT	xmpp.transports-module.html#ERR_RESOURCE_CONSTRAINT
xmpp.transports.SASL_INVALID_AUTHZID	xmpp.transports-module.html#SASL_INVALID_AUTHZID
xmpp.transports.ERR_JID_MALFORMED	xmpp.transports-module.html#ERR_JID_MALFORMED
xmpp.transports.STREAM_CONFLICT	xmpp.transports-module.html#STREAM_CONFLICT
xmpp.transports.isResultNode	xmpp.protocol-module.html#isResultNode
xmpp.transports.ERR_SERVICE_UNAVAILABLE	xmpp.transports-module.html#ERR_SERVICE_UNAVAILABLE
xmpp.transports.STREAM_UNDEFINED_CONDITION	xmpp.transports-module.html#STREAM_UNDEFINED_CONDITION
xmpp.transports.ERRORS	xmpp.transports-module.html#ERRORS
xmpp.transports.STREAM_BAD_FORMAT	xmpp.transports-module.html#STREAM_BAD_FORMAT
xmpp.transports.SASL_ABORTED	xmpp.transports-module.html#SASL_ABORTED
xmpp.transports.STREAM_HOST_GONE	xmpp.transports-module.html#STREAM_HOST_GONE
xmpp.transports.ERR_UNDEFINED_CONDITION	xmpp.transports-module.html#ERR_UNDEFINED_CONDITION
xmpp.transports.STREAM_INVALID_FROM	xmpp.transports-module.html#STREAM_INVALID_FROM
xmpp.transports.DATA_RECEIVED	xmpp.transports-module.html#DATA_RECEIVED
xmpp.transports.ERR_REMOTE_SERVER_TIMEOUT	xmpp.transports-module.html#ERR_REMOTE_SERVER_TIMEOUT
xmpp.transports.STREAM_SYSTEM_SHUTDOWN	xmpp.transports-module.html#STREAM_SYSTEM_SHUTDOWN
xmpp.transports.STREAM_INVALID_NAMESPACE	xmpp.transports-module.html#STREAM_INVALID_NAMESPACE
xmpp.transports.STREAM_UNSUPPORTED_VERSION	xmpp.transports-module.html#STREAM_UNSUPPORTED_VERSION
xmpp.transports.SASL_NOT_AUTHORIZED	xmpp.transports-module.html#SASL_NOT_AUTHORIZED
xmpp.transports.DBG_CONNECT_PROXY	xmpp.transports-module.html#DBG_CONNECT_PROXY
xmpp.transports.ERR_REMOTE_SERVER_NOT_FOUND	xmpp.transports-module.html#ERR_REMOTE_SERVER_NOT_FOUND
xmpp.transports.ERR_SUBSCRIPTION_REQUIRED	xmpp.transports-module.html#ERR_SUBSCRIPTION_REQUIRED
xmpp.transports.STREAM_INTERNAL_SERVER_ERROR	xmpp.transports-module.html#STREAM_INTERNAL_SERVER_ERROR
xmpp.transports.BUFLEN	xmpp.transports-module.html#BUFLEN
xmpp.transports.STREAM_INVALID_XML	xmpp.transports-module.html#STREAM_INVALID_XML
xmpp.transports.ERR_NOT_ALLOWED	xmpp.transports-module.html#ERR_NOT_ALLOWED
xmpp.transports.STREAM_HOST_UNKNOWN	xmpp.transports-module.html#STREAM_HOST_UNKNOWN
xmpp.transports.ERR_BAD_REQUEST	xmpp.transports-module.html#ERR_BAD_REQUEST
xmpp.transports.SASL_MECHANISM_TOO_WEAK	xmpp.transports-module.html#SASL_MECHANISM_TOO_WEAK
xmpp.transports.STREAM_XML_NOT_WELL_FORMED	xmpp.transports-module.html#STREAM_XML_NOT_WELL_FORMED
xmpp.transports.STREAM_POLICY_VIOLATION	xmpp.transports-module.html#STREAM_POLICY_VIOLATION
xmpp.transports.STREAM_SEE_OTHER_HOST	xmpp.transports-module.html#STREAM_SEE_OTHER_HOST
xmpp.transports.STREAM_BAD_NAMESPACE_PREFIX	xmpp.transports-module.html#STREAM_BAD_NAMESPACE_PREFIX
xmpp.transports.SASL_INVALID_MECHANISM	xmpp.transports-module.html#SASL_INVALID_MECHANISM
xmpp.transports.ERR_UNEXPECTED_REQUEST	xmpp.transports-module.html#ERR_UNEXPECTED_REQUEST
xmpp.transports.ERR_RECIPIENT_UNAVAILABLE	xmpp.transports-module.html#ERR_RECIPIENT_UNAVAILABLE
xmpp.transports.SASL_TEMPORARY_AUTH_FAILURE	xmpp.transports-module.html#SASL_TEMPORARY_AUTH_FAILURE
xmpp.transports.ERR_PAYMENT_REQUIRED	xmpp.transports-module.html#ERR_PAYMENT_REQUIRED
xmpp.transports.STREAM_RESTRICTED_XML	xmpp.transports-module.html#STREAM_RESTRICTED_XML
xmpp.transports.STREAM_RESOURCE_CONSTRAINT	xmpp.transports-module.html#STREAM_RESOURCE_CONSTRAINT
xmpp.transports.HAVE_DNSPYTHON	xmpp.transports-module.html#HAVE_DNSPYTHON
xmpp.transports.ERR_ITEM_NOT_FOUND	xmpp.transports-module.html#ERR_ITEM_NOT_FOUND
xmpp.transports.STREAM_REMOTE_CONNECTION_FAILED	xmpp.transports-module.html#STREAM_REMOTE_CONNECTION_FAILED
xmpp.transports.STREAM_INVALID_ID	xmpp.transports-module.html#STREAM_INVALID_ID
xmpp.transports.ustr	xmpp.simplexml-module.html#ustr
xmpp.transports.ERR_NOT_ACCEPTABLE	xmpp.transports-module.html#ERR_NOT_ACCEPTABLE
xmpp.transports.STREAM_UNSUPPORTED_STANZA_TYPE	xmpp.transports-module.html#STREAM_UNSUPPORTED_STANZA_TYPE
xmpp.transports.ERR_FORBIDDEN	xmpp.transports-module.html#ERR_FORBIDDEN
xmpp.auth.Bind	xmpp.auth.Bind-class.html
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.auth.Bind.plugin	xmpp.auth.Bind-class.html#plugin
xmpp.auth.Bind.Bind	xmpp.auth.Bind-class.html#Bind
xmpp.auth.Bind.plugout	xmpp.auth.Bind-class.html#plugout
xmpp.auth.Bind.FeaturesHandler	xmpp.auth.Bind-class.html#FeaturesHandler
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.auth.Bind.__init__	xmpp.auth.Bind-class.html#__init__
xmpp.auth.ComponentBind	xmpp.auth.ComponentBind-class.html
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.auth.ComponentBind.plugin	xmpp.auth.ComponentBind-class.html#plugin
xmpp.auth.ComponentBind.Bind	xmpp.auth.ComponentBind-class.html#Bind
xmpp.auth.ComponentBind.plugout	xmpp.auth.ComponentBind-class.html#plugout
xmpp.auth.ComponentBind.BindHandler	xmpp.auth.ComponentBind-class.html#BindHandler
xmpp.auth.ComponentBind.FeaturesHandler	xmpp.auth.ComponentBind-class.html#FeaturesHandler
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.auth.ComponentBind.__init__	xmpp.auth.ComponentBind-class.html#__init__
xmpp.auth.NonSASL	xmpp.auth.NonSASL-class.html
xmpp.auth.NonSASL.authComponent	xmpp.auth.NonSASL-class.html#authComponent
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.auth.NonSASL.plugin	xmpp.auth.NonSASL-class.html#plugin
xmpp.auth.NonSASL.handshakeHandler	xmpp.auth.NonSASL-class.html#handshakeHandler
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.auth.NonSASL.__init__	xmpp.auth.NonSASL-class.html#__init__
xmpp.auth.SASL	xmpp.auth.SASL-class.html
xmpp.auth.SASL.SASLHandler	xmpp.auth.SASL-class.html#SASLHandler
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.auth.SASL.plugin	xmpp.auth.SASL-class.html#plugin
xmpp.auth.SASL.plugout	xmpp.auth.SASL-class.html#plugout
xmpp.auth.SASL.auth	xmpp.auth.SASL-class.html#auth
xmpp.auth.SASL.FeaturesHandler	xmpp.auth.SASL-class.html#FeaturesHandler
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.auth.SASL.__init__	xmpp.auth.SASL-class.html#__init__
xmpp.browser.Browser	xmpp.browser.Browser-class.html
xmpp.browser.Browser.plugout	xmpp.browser.Browser-class.html#plugout
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.browser.Browser.getDiscoHandler	xmpp.browser.Browser-class.html#getDiscoHandler
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.browser.Browser.plugin	xmpp.browser.Browser-class.html#plugin
xmpp.browser.Browser._traversePath	xmpp.browser.Browser-class.html#_traversePath
xmpp.browser.Browser.setDiscoHandler	xmpp.browser.Browser-class.html#setDiscoHandler
xmpp.browser.Browser._DiscoveryHandler	xmpp.browser.Browser-class.html#_DiscoveryHandler
xmpp.browser.Browser.delDiscoHandler	xmpp.browser.Browser-class.html#delDiscoHandler
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.browser.Browser.__init__	xmpp.browser.Browser-class.html#__init__
xmpp.client.Client	xmpp.client.Client-class.html
xmpp.client.Client.getRoster	xmpp.client.Client-class.html#getRoster
xmpp.client.CommonClient.disconnected	xmpp.client.CommonClient-class.html#disconnected
xmpp.client.CommonClient.UnregisterDisconnectHandler	xmpp.client.CommonClient-class.html#UnregisterDisconnectHandler
xmpp.client.CommonClient.RegisterDisconnectHandler	xmpp.client.CommonClient-class.html#RegisterDisconnectHandler
xmpp.client.Client.sendPresence	xmpp.client.Client-class.html#sendPresence
xmpp.client.Client.auth	xmpp.client.Client-class.html#auth
xmpp.client.CommonClient.event	xmpp.client.CommonClient-class.html#event
xmpp.client.CommonClient.isConnected	xmpp.client.CommonClient-class.html#isConnected
xmpp.client.Client.connect	xmpp.client.Client-class.html#connect
xmpp.client.CommonClient.DisconnectHandler	xmpp.client.CommonClient-class.html#DisconnectHandler
xmpp.client.Client.sendInitPresence	xmpp.client.Client-class.html#sendInitPresence
xmpp.client.CommonClient.reconnectAndReauth	xmpp.client.CommonClient-class.html#reconnectAndReauth
xmpp.client.CommonClient.__init__	xmpp.client.CommonClient-class.html#__init__
xmpp.client.CommonClient	xmpp.client.CommonClient-class.html
xmpp.client.CommonClient.disconnected	xmpp.client.CommonClient-class.html#disconnected
xmpp.client.CommonClient.UnregisterDisconnectHandler	xmpp.client.CommonClient-class.html#UnregisterDisconnectHandler
xmpp.client.CommonClient.RegisterDisconnectHandler	xmpp.client.CommonClient-class.html#RegisterDisconnectHandler
xmpp.client.CommonClient.isConnected	xmpp.client.CommonClient-class.html#isConnected
xmpp.client.CommonClient.reconnectAndReauth	xmpp.client.CommonClient-class.html#reconnectAndReauth
xmpp.client.CommonClient.connect	xmpp.client.CommonClient-class.html#connect
xmpp.client.CommonClient.DisconnectHandler	xmpp.client.CommonClient-class.html#DisconnectHandler
xmpp.client.CommonClient.event	xmpp.client.CommonClient-class.html#event
xmpp.client.CommonClient.__init__	xmpp.client.CommonClient-class.html#__init__
xmpp.client.Component	xmpp.client.Component-class.html
xmpp.client.Component.dobind	xmpp.client.Component-class.html#dobind
xmpp.client.CommonClient.disconnected	xmpp.client.CommonClient-class.html#disconnected
xmpp.client.CommonClient.UnregisterDisconnectHandler	xmpp.client.CommonClient-class.html#UnregisterDisconnectHandler
xmpp.client.CommonClient.RegisterDisconnectHandler	xmpp.client.CommonClient-class.html#RegisterDisconnectHandler
xmpp.client.Component.auth	xmpp.client.Component-class.html#auth
xmpp.client.CommonClient.event	xmpp.client.CommonClient-class.html#event
xmpp.client.CommonClient.isConnected	xmpp.client.CommonClient-class.html#isConnected
xmpp.client.Component.connect	xmpp.client.Component-class.html#connect
xmpp.client.CommonClient.DisconnectHandler	xmpp.client.CommonClient-class.html#DisconnectHandler
xmpp.client.CommonClient.reconnectAndReauth	xmpp.client.CommonClient-class.html#reconnectAndReauth
xmpp.client.Component.__init__	xmpp.client.Component-class.html#__init__
xmpp.client.PlugIn	xmpp.client.PlugIn-class.html
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.client.PlugIn.__init__	xmpp.client.PlugIn-class.html#__init__
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.commands.Command_Handler_Prototype	xmpp.commands.Command_Handler_Prototype-class.html
xmpp.commands.Command_Handler_Prototype.count	xmpp.commands.Command_Handler_Prototype-class.html#count
xmpp.commands.Command_Handler_Prototype._DiscoHandler	xmpp.commands.Command_Handler_Prototype-class.html#_DiscoHandler
xmpp.commands.Command_Handler_Prototype.Execute	xmpp.commands.Command_Handler_Prototype-class.html#Execute
xmpp.commands.Command_Handler_Prototype.description	xmpp.commands.Command_Handler_Prototype-class.html#description
xmpp.commands.Command_Handler_Prototype.plugout	xmpp.commands.Command_Handler_Prototype-class.html#plugout
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.commands.Command_Handler_Prototype.plugin	xmpp.commands.Command_Handler_Prototype-class.html#plugin
xmpp.commands.Command_Handler_Prototype.discofeatures	xmpp.commands.Command_Handler_Prototype-class.html#discofeatures
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.commands.Command_Handler_Prototype.getSessionID	xmpp.commands.Command_Handler_Prototype-class.html#getSessionID
xmpp.commands.Command_Handler_Prototype.__init__	xmpp.commands.Command_Handler_Prototype-class.html#__init__
xmpp.commands.Command_Handler_Prototype.name	xmpp.commands.Command_Handler_Prototype-class.html#name
xmpp.commands.Commands	xmpp.commands.Commands-class.html
xmpp.commands.Commands._DiscoHandler	xmpp.commands.Commands-class.html#_DiscoHandler
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.commands.Commands.plugin	xmpp.commands.Commands-class.html#plugin
xmpp.commands.Commands.addCommand	xmpp.commands.Commands-class.html#addCommand
xmpp.commands.Commands.plugout	xmpp.commands.Commands-class.html#plugout
xmpp.commands.Commands.delCommand	xmpp.commands.Commands-class.html#delCommand
xmpp.commands.Commands.getCommand	xmpp.commands.Commands-class.html#getCommand
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.commands.Commands._CommandHandler	xmpp.commands.Commands-class.html#_CommandHandler
xmpp.commands.Commands.__init__	xmpp.commands.Commands-class.html#__init__
xmpp.commands.TestCommand	xmpp.commands.TestCommand-class.html
xmpp.commands.Command_Handler_Prototype.count	xmpp.commands.Command_Handler_Prototype-class.html#count
xmpp.commands.Command_Handler_Prototype._DiscoHandler	xmpp.commands.Command_Handler_Prototype-class.html#_DiscoHandler
xmpp.commands.Command_Handler_Prototype.Execute	xmpp.commands.Command_Handler_Prototype-class.html#Execute
xmpp.commands.TestCommand.description	xmpp.commands.TestCommand-class.html#description
xmpp.commands.Command_Handler_Prototype.plugout	xmpp.commands.Command_Handler_Prototype-class.html#plugout
xmpp.commands.TestCommand.cmdSecondStage	xmpp.commands.TestCommand-class.html#cmdSecondStage
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.commands.Command_Handler_Prototype.plugin	xmpp.commands.Command_Handler_Prototype-class.html#plugin
xmpp.commands.TestCommand.cmdThirdStage	xmpp.commands.TestCommand-class.html#cmdThirdStage
xmpp.commands.TestCommand.cmdCancel	xmpp.commands.TestCommand-class.html#cmdCancel
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.commands.Command_Handler_Prototype.discofeatures	xmpp.commands.Command_Handler_Prototype-class.html#discofeatures
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.commands.TestCommand.cmdSecondStageReply	xmpp.commands.TestCommand-class.html#cmdSecondStageReply
xmpp.commands.Command_Handler_Prototype.getSessionID	xmpp.commands.Command_Handler_Prototype-class.html#getSessionID
xmpp.commands.TestCommand.cmdFirstStage	xmpp.commands.TestCommand-class.html#cmdFirstStage
xmpp.commands.TestCommand.__init__	xmpp.commands.TestCommand-class.html#__init__
xmpp.commands.TestCommand.name	xmpp.commands.TestCommand-class.html#name
xmpp.debug.Debug	xmpp.debug.Debug-class.html
xmpp.debug.Debug._append_unique_str	xmpp.debug.Debug-class.html#_append_unique_str
xmpp.debug.Debug._validate_flag	xmpp.debug.Debug-class.html#_validate_flag
xmpp.debug.Debug.Show	xmpp.debug.Debug-class.html#Show
xmpp.debug.Debug.active_get	xmpp.debug.Debug-class.html#active_get
xmpp.debug.Debug.show	xmpp.debug.Debug-class.html#show
xmpp.debug.Debug.is_active	xmpp.debug.Debug-class.html#is_active
xmpp.debug.Debug.active_set	xmpp.debug.Debug-class.html#active_set
xmpp.debug.Debug.colors	xmpp.debug.Debug-class.html#colors
xmpp.debug.Debug._remove_dupe_flags	xmpp.debug.Debug-class.html#_remove_dupe_flags
xmpp.debug.Debug._as_one_list	xmpp.debug.Debug-class.html#_as_one_list
xmpp.debug.Debug.__init__	xmpp.debug.Debug-class.html#__init__
xmpp.debug.NoDebug	xmpp.debug.NoDebug-class.html
xmpp.debug.NoDebug.show	xmpp.debug.NoDebug-class.html#show
xmpp.debug.NoDebug.Show	xmpp.debug.NoDebug-class.html#Show
xmpp.debug.NoDebug.is_active	xmpp.debug.NoDebug-class.html#is_active
xmpp.debug.NoDebug.active_set	xmpp.debug.NoDebug-class.html#active_set
xmpp.debug.NoDebug.colors	xmpp.debug.NoDebug-class.html#colors
xmpp.debug.NoDebug.__init__	xmpp.debug.NoDebug-class.html#__init__
xmpp.dispatcher.Dispatcher	xmpp.dispatcher.Dispatcher-class.html
xmpp.dispatcher.Dispatcher.restoreHandlers	xmpp.dispatcher.Dispatcher-class.html#restoreHandlers
xmpp.dispatcher.Dispatcher.plugout	xmpp.dispatcher.Dispatcher-class.html#plugout
xmpp.dispatcher.Dispatcher._init	xmpp.dispatcher.Dispatcher-class.html#_init
xmpp.dispatcher.Dispatcher.dispatch	xmpp.dispatcher.Dispatcher-class.html#dispatch
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.dispatcher.Dispatcher.RegisterHandlerOnce	xmpp.dispatcher.Dispatcher-class.html#RegisterHandlerOnce
xmpp.dispatcher.Dispatcher.__init__	xmpp.dispatcher.Dispatcher-class.html#__init__
xmpp.dispatcher.Dispatcher.RegisterDefaultHandler	xmpp.dispatcher.Dispatcher-class.html#RegisterDefaultHandler
xmpp.dispatcher.Dispatcher.SendAndCallForResponse	xmpp.dispatcher.Dispatcher-class.html#SendAndCallForResponse
xmpp.dispatcher.Dispatcher.UnregisterHandler	xmpp.dispatcher.Dispatcher-class.html#UnregisterHandler
xmpp.dispatcher.Dispatcher.disconnect	xmpp.dispatcher.Dispatcher-class.html#disconnect
xmpp.dispatcher.Dispatcher.RegisterNamespace	xmpp.dispatcher.Dispatcher-class.html#RegisterNamespace
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.dispatcher.Dispatcher.dumpHandlers	xmpp.dispatcher.Dispatcher-class.html#dumpHandlers
xmpp.dispatcher.Dispatcher.UnregisterCycleHandler	xmpp.dispatcher.Dispatcher-class.html#UnregisterCycleHandler
xmpp.dispatcher.Dispatcher.SendAndWaitForResponse	xmpp.dispatcher.Dispatcher-class.html#SendAndWaitForResponse
xmpp.dispatcher.Dispatcher.send	xmpp.dispatcher.Dispatcher-class.html#send
xmpp.dispatcher.Dispatcher.RegisterEventHandler	xmpp.dispatcher.Dispatcher-class.html#RegisterEventHandler
xmpp.dispatcher.Dispatcher.StreamInit	xmpp.dispatcher.Dispatcher-class.html#StreamInit
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.dispatcher.Dispatcher.RegisterCycleHandler	xmpp.dispatcher.Dispatcher-class.html#RegisterCycleHandler
xmpp.dispatcher.Dispatcher.streamErrorHandler	xmpp.dispatcher.Dispatcher-class.html#streamErrorHandler
xmpp.dispatcher.Dispatcher.RegisterNamespaceHandler	xmpp.dispatcher.Dispatcher-class.html#RegisterNamespaceHandler
xmpp.dispatcher.Dispatcher.RegisterProtocol	xmpp.dispatcher.Dispatcher-class.html#RegisterProtocol
xmpp.dispatcher.Dispatcher._check_stream_start	xmpp.dispatcher.Dispatcher-class.html#_check_stream_start
xmpp.dispatcher.Dispatcher.plugin	xmpp.dispatcher.Dispatcher-class.html#plugin
xmpp.dispatcher.Dispatcher.Process	xmpp.dispatcher.Dispatcher-class.html#Process
xmpp.dispatcher.Dispatcher.WaitForResponse	xmpp.dispatcher.Dispatcher-class.html#WaitForResponse
xmpp.dispatcher.Dispatcher.returnStanzaHandler	xmpp.dispatcher.Dispatcher-class.html#returnStanzaHandler
xmpp.dispatcher.Dispatcher.RegisterHandler	xmpp.dispatcher.Dispatcher-class.html#RegisterHandler
xmpp.dispatcher.Dispatcher.Event	xmpp.dispatcher.Dispatcher-class.html#Event
xmpp.filetransfer.IBB	xmpp.filetransfer.IBB-class.html
xmpp.filetransfer.IBB.OpenStream	xmpp.filetransfer.IBB-class.html#OpenStream
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.filetransfer.IBB.StreamOpenReplyHandler	xmpp.filetransfer.IBB-class.html#StreamOpenReplyHandler
xmpp.filetransfer.IBB.plugin	xmpp.filetransfer.IBB-class.html#plugin
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.filetransfer.IBB.SendHandler	xmpp.filetransfer.IBB-class.html#SendHandler
xmpp.filetransfer.IBB.StreamBrokenHandler	xmpp.filetransfer.IBB-class.html#StreamBrokenHandler
xmpp.filetransfer.IBB.IqHandler	xmpp.filetransfer.IBB-class.html#IqHandler
xmpp.filetransfer.IBB.ReceiveHandler	xmpp.filetransfer.IBB-class.html#ReceiveHandler
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.filetransfer.IBB.StreamCloseHandler	xmpp.filetransfer.IBB-class.html#StreamCloseHandler
xmpp.filetransfer.IBB.StreamOpenHandler	xmpp.filetransfer.IBB-class.html#StreamOpenHandler
xmpp.filetransfer.IBB.__init__	xmpp.filetransfer.IBB-class.html#__init__
xmpp.protocol.BadFormat	xmpp.protocol.BadFormat-class.html
xmpp.protocol.BadNamespacePrefix	xmpp.protocol.BadNamespacePrefix-class.html
xmpp.protocol.Conflict	xmpp.protocol.Conflict-class.html
xmpp.protocol.ConnectionTimeout	xmpp.protocol.ConnectionTimeout-class.html
xmpp.protocol.DataField	xmpp.protocol.DataField-class.html
xmpp.simplexml.Node.addChild	xmpp.simplexml.Node-class.html#addChild
xmpp.protocol.DataField.setLabel	xmpp.protocol.DataField-class.html#setLabel
xmpp.protocol.DataField.addOption	xmpp.protocol.DataField-class.html#addOption
xmpp.simplexml.Node.getAttrs	xmpp.simplexml.Node-class.html#getAttrs
xmpp.simplexml.Node.delAttr	xmpp.simplexml.Node-class.html#delAttr
xmpp.simplexml.Node.setNamespace	xmpp.simplexml.Node-class.html#setNamespace
xmpp.simplexml.Node.__str__	xmpp.simplexml.Node-class.html#__str__
xmpp.simplexml.Node.getNamespace	xmpp.simplexml.Node-class.html#getNamespace
xmpp.protocol.DataField.getValues	xmpp.protocol.DataField-class.html#getValues
xmpp.simplexml.Node.getChildren	xmpp.simplexml.Node-class.html#getChildren
xmpp.simplexml.Node.has_attr	xmpp.simplexml.Node-class.html#has_attr
xmpp.protocol.DataField.getLabel	xmpp.protocol.DataField-class.html#getLabel
xmpp.protocol.DataField.getOptions	xmpp.protocol.DataField-class.html#getOptions
xmpp.protocol.DataField.setVar	xmpp.protocol.DataField-class.html#setVar
xmpp.protocol.DataField.__init__	xmpp.protocol.DataField-class.html#__init__
xmpp.protocol.DataField.setType	xmpp.protocol.DataField-class.html#setType
xmpp.simplexml.Node.setTagAttr	xmpp.simplexml.Node-class.html#setTagAttr
xmpp.simplexml.Node.setName	xmpp.simplexml.Node-class.html#setName
xmpp.simplexml.Node.clearData	xmpp.simplexml.Node-class.html#clearData
xmpp.protocol.DataField.getDesc	xmpp.protocol.DataField-class.html#getDesc
xmpp.simplexml.Node.setParent	xmpp.simplexml.Node-class.html#setParent
xmpp.simplexml.Node.getName	xmpp.simplexml.Node-class.html#getName
xmpp.simplexml.Node.__getattr__	xmpp.simplexml.Node-class.html#__getattr__
xmpp.protocol.DataField.getVar	xmpp.protocol.DataField-class.html#getVar
xmpp.simplexml.Node.getData	xmpp.simplexml.Node-class.html#getData
xmpp.protocol.DataField.setDesc	xmpp.protocol.DataField-class.html#setDesc
xmpp.simplexml.Node.getTagData	xmpp.simplexml.Node-class.html#getTagData
xmpp.simplexml.Node.setData	xmpp.simplexml.Node-class.html#setData
xmpp.simplexml.Node.setTagData	xmpp.simplexml.Node-class.html#setTagData
xmpp.protocol.DataField.setValue	xmpp.protocol.DataField-class.html#setValue
xmpp.simplexml.Node.__getitem__	xmpp.simplexml.Node-class.html#__getitem__
xmpp.simplexml.Node.getTagAttr	xmpp.simplexml.Node-class.html#getTagAttr
xmpp.protocol.DataField.setRequired	xmpp.protocol.DataField-class.html#setRequired
xmpp.protocol.DataField.getType	xmpp.protocol.DataField-class.html#getType
xmpp.protocol.DataField.setOptions	xmpp.protocol.DataField-class.html#setOptions
xmpp.protocol.DataField.isRequired	xmpp.protocol.DataField-class.html#isRequired
xmpp.simplexml.Node.__setitem__	xmpp.simplexml.Node-class.html#__setitem__
xmpp.simplexml.Node.getPayload	xmpp.simplexml.Node-class.html#getPayload
xmpp.simplexml.Node.getTag	xmpp.simplexml.Node-class.html#getTag
xmpp.protocol.DataField.setValues	xmpp.protocol.DataField-class.html#setValues
xmpp.simplexml.Node.getTags	xmpp.simplexml.Node-class.html#getTags
xmpp.simplexml.Node.__delitem__	xmpp.simplexml.Node-class.html#__delitem__
xmpp.simplexml.Node.getParent	xmpp.simplexml.Node-class.html#getParent
xmpp.simplexml.Node.getCDATA	xmpp.simplexml.Node-class.html#getCDATA
xmpp.simplexml.Node.setAttr	xmpp.simplexml.Node-class.html#setAttr
xmpp.simplexml.Node.delChild	xmpp.simplexml.Node-class.html#delChild
xmpp.simplexml.Node.getAttr	xmpp.simplexml.Node-class.html#getAttr
xmpp.simplexml.Node.addData	xmpp.simplexml.Node-class.html#addData
xmpp.protocol.DataField.getValue	xmpp.protocol.DataField-class.html#getValue
xmpp.simplexml.Node.setPayload	xmpp.simplexml.Node-class.html#setPayload
xmpp.simplexml.Node.FORCE_NODE_RECREATION	xmpp.simplexml.Node-class.html#FORCE_NODE_RECREATION
xmpp.simplexml.Node.setTag	xmpp.simplexml.Node-class.html#setTag
xmpp.protocol.DataField.addValue	xmpp.protocol.DataField-class.html#addValue
xmpp.protocol.DataForm	xmpp.protocol.DataForm-class.html
xmpp.simplexml.Node.addChild	xmpp.simplexml.Node-class.html#addChild
xmpp.simplexml.Node.getAttrs	xmpp.simplexml.Node-class.html#getAttrs
xmpp.simplexml.Node.delAttr	xmpp.simplexml.Node-class.html#delAttr
xmpp.simplexml.Node.setNamespace	xmpp.simplexml.Node-class.html#setNamespace
xmpp.protocol.DataForm.setTitle	xmpp.protocol.DataForm-class.html#setTitle
xmpp.simplexml.Node.getNamespace	xmpp.simplexml.Node-class.html#getNamespace
xmpp.simplexml.Node.getChildren	xmpp.simplexml.Node-class.html#getChildren
xmpp.simplexml.Node.has_attr	xmpp.simplexml.Node-class.html#has_attr
xmpp.protocol.DataForm.setField	xmpp.protocol.DataForm-class.html#setField
xmpp.protocol.DataForm.__init__	xmpp.protocol.DataForm-class.html#__init__
xmpp.protocol.DataForm.setType	xmpp.protocol.DataForm-class.html#setType
xmpp.protocol.DataForm.asDict	xmpp.protocol.DataForm-class.html#asDict
xmpp.simplexml.Node.clearData	xmpp.simplexml.Node-class.html#clearData
xmpp.simplexml.Node.setParent	xmpp.simplexml.Node-class.html#setParent
xmpp.simplexml.Node.getName	xmpp.simplexml.Node-class.html#getName
xmpp.simplexml.Node.setAttr	xmpp.simplexml.Node-class.html#setAttr
xmpp.simplexml.Node.__getattr__	xmpp.simplexml.Node-class.html#__getattr__
xmpp.simplexml.Node.getData	xmpp.simplexml.Node-class.html#getData
xmpp.protocol.DataForm.setInstructions	xmpp.protocol.DataForm-class.html#setInstructions
xmpp.simplexml.Node.__str__	xmpp.simplexml.Node-class.html#__str__
xmpp.simplexml.Node.getTagData	xmpp.simplexml.Node-class.html#getTagData
xmpp.simplexml.Node.setData	xmpp.simplexml.Node-class.html#setData
xmpp.simplexml.Node.setTagData	xmpp.simplexml.Node-class.html#setTagData
xmpp.simplexml.Node.setName	xmpp.simplexml.Node-class.html#setName
xmpp.protocol.DataForm.__getitem__	xmpp.protocol.DataForm-class.html#__getitem__
xmpp.simplexml.Node.getTagAttr	xmpp.simplexml.Node-class.html#getTagAttr
xmpp.protocol.DataForm.getType	xmpp.protocol.DataForm-class.html#getType
xmpp.protocol.DataForm.__setitem__	xmpp.protocol.DataForm-class.html#__setitem__
xmpp.simplexml.Node.getPayload	xmpp.simplexml.Node-class.html#getPayload
xmpp.protocol.DataForm.getTitle	xmpp.protocol.DataForm-class.html#getTitle
xmpp.protocol.DataForm.getInstructions	xmpp.protocol.DataForm-class.html#getInstructions
xmpp.simplexml.Node.getTag	xmpp.simplexml.Node-class.html#getTag
xmpp.simplexml.Node.setTagAttr	xmpp.simplexml.Node-class.html#setTagAttr
xmpp.simplexml.Node.getTags	xmpp.simplexml.Node-class.html#getTags
xmpp.simplexml.Node.__delitem__	xmpp.simplexml.Node-class.html#__delitem__
xmpp.simplexml.Node.FORCE_NODE_RECREATION	xmpp.simplexml.Node-class.html#FORCE_NODE_RECREATION
xmpp.simplexml.Node.getParent	xmpp.simplexml.Node-class.html#getParent
xmpp.simplexml.Node.getCDATA	xmpp.simplexml.Node-class.html#getCDATA
xmpp.protocol.DataForm.getField	xmpp.protocol.DataForm-class.html#getField
xmpp.simplexml.Node.delChild	xmpp.simplexml.Node-class.html#delChild
xmpp.simplexml.Node.getAttr	xmpp.simplexml.Node-class.html#getAttr
xmpp.simplexml.Node.addData	xmpp.simplexml.Node-class.html#addData
xmpp.simplexml.Node.setPayload	xmpp.simplexml.Node-class.html#setPayload
xmpp.protocol.DataForm.addInstructions	xmpp.protocol.DataForm-class.html#addInstructions
xmpp.simplexml.Node.setTag	xmpp.simplexml.Node-class.html#setTag
xmpp.protocol.Error	xmpp.protocol.Error-class.html
xmpp.simplexml.Node.addChild	xmpp.simplexml.Node-class.html#addChild
xmpp.simplexml.Node.getAttrs	xmpp.simplexml.Node-class.html#getAttrs
xmpp.protocol.Protocol.setFrom	xmpp.protocol.Protocol-class.html#setFrom
xmpp.simplexml.Node.setNamespace	xmpp.simplexml.Node-class.html#setNamespace
xmpp.simplexml.Node.__str__	xmpp.simplexml.Node-class.html#__str__
xmpp.simplexml.Node.setAttr	xmpp.simplexml.Node-class.html#setAttr
xmpp.simplexml.Node.getNamespace	xmpp.simplexml.Node-class.html#getNamespace
xmpp.protocol.Protocol.getID	xmpp.protocol.Protocol-class.html#getID
xmpp.simplexml.Node.getChildren	xmpp.simplexml.Node-class.html#getChildren
xmpp.simplexml.Node.has_attr	xmpp.simplexml.Node-class.html#has_attr
xmpp.protocol.Protocol.setTo	xmpp.protocol.Protocol-class.html#setTo
xmpp.simplexml.Node.delAttr	xmpp.simplexml.Node-class.html#delAttr
xmpp.protocol.Protocol.setError	xmpp.protocol.Protocol-class.html#setError
xmpp.protocol.Error.__init__	xmpp.protocol.Error-class.html#__init__
xmpp.protocol.Protocol.setType	xmpp.protocol.Protocol-class.html#setType
xmpp.protocol.Protocol.getTo	xmpp.protocol.Protocol-class.html#getTo
xmpp.simplexml.Node.setName	xmpp.simplexml.Node-class.html#setName
xmpp.protocol.Protocol.getError	xmpp.protocol.Protocol-class.html#getError
xmpp.simplexml.Node.setParent	xmpp.simplexml.Node-class.html#setParent
xmpp.simplexml.Node.getName	xmpp.simplexml.Node-class.html#getName
xmpp.protocol.Protocol.getFrom	xmpp.protocol.Protocol-class.html#getFrom
xmpp.protocol.Protocol.setTimestamp	xmpp.protocol.Protocol-class.html#setTimestamp
xmpp.simplexml.Node.__getattr__	xmpp.simplexml.Node-class.html#__getattr__
xmpp.protocol.Protocol.getTimestamp	xmpp.protocol.Protocol-class.html#getTimestamp
xmpp.simplexml.Node.getData	xmpp.simplexml.Node-class.html#getData
xmpp.simplexml.Node.getTagData	xmpp.simplexml.Node-class.html#getTagData
xmpp.simplexml.Node.setData	xmpp.simplexml.Node-class.html#setData
xmpp.protocol.Protocol.getErrorCode	xmpp.protocol.Protocol-class.html#getErrorCode
xmpp.protocol.Error.__dupstr__	xmpp.protocol.Error-class.html#__dupstr__
xmpp.simplexml.Node.setTag	xmpp.simplexml.Node-class.html#setTag
xmpp.simplexml.Node.__getitem__	xmpp.simplexml.Node-class.html#__getitem__
xmpp.simplexml.Node.getTagAttr	xmpp.simplexml.Node-class.html#getTagAttr
xmpp.protocol.Protocol.getType	xmpp.protocol.Protocol-class.html#getType
xmpp.protocol.Protocol.__setitem__	xmpp.protocol.Protocol-class.html#__setitem__
xmpp.simplexml.Node.getPayload	xmpp.simplexml.Node-class.html#getPayload
xmpp.protocol.Protocol.setID	xmpp.protocol.Protocol-class.html#setID
xmpp.simplexml.Node.setTagAttr	xmpp.simplexml.Node-class.html#setTagAttr
xmpp.simplexml.Node.getParent	xmpp.simplexml.Node-class.html#getParent
xmpp.simplexml.Node.getTags	xmpp.simplexml.Node-class.html#getTags
xmpp.simplexml.Node.__delitem__	xmpp.simplexml.Node-class.html#__delitem__
xmpp.simplexml.Node.clearData	xmpp.simplexml.Node-class.html#clearData
xmpp.simplexml.Node.getCDATA	xmpp.simplexml.Node-class.html#getCDATA
xmpp.simplexml.Node.setTagData	xmpp.simplexml.Node-class.html#setTagData
xmpp.simplexml.Node.delChild	xmpp.simplexml.Node-class.html#delChild
xmpp.simplexml.Node.getAttr	xmpp.simplexml.Node-class.html#getAttr
xmpp.simplexml.Node.addData	xmpp.simplexml.Node-class.html#addData
xmpp.simplexml.Node.setPayload	xmpp.simplexml.Node-class.html#setPayload
xmpp.simplexml.Node.FORCE_NODE_RECREATION	xmpp.simplexml.Node-class.html#FORCE_NODE_RECREATION
xmpp.protocol.Protocol.getProperties	xmpp.protocol.Protocol-class.html#getProperties
xmpp.simplexml.Node.getTag	xmpp.simplexml.Node-class.html#getTag
xmpp.protocol.ErrorNode	xmpp.protocol.ErrorNode-class.html
xmpp.simplexml.Node.addChild	xmpp.simplexml.Node-class.html#addChild
xmpp.simplexml.Node.getAttrs	xmpp.simplexml.Node-class.html#getAttrs
xmpp.simplexml.Node.delAttr	xmpp.simplexml.Node-class.html#delAttr
xmpp.simplexml.Node.setNamespace	xmpp.simplexml.Node-class.html#setNamespace
xmpp.simplexml.Node.__str__	xmpp.simplexml.Node-class.html#__str__
xmpp.simplexml.Node.getNamespace	xmpp.simplexml.Node-class.html#getNamespace
xmpp.simplexml.Node.getChildren	xmpp.simplexml.Node-class.html#getChildren
xmpp.simplexml.Node.has_attr	xmpp.simplexml.Node-class.html#has_attr
xmpp.protocol.ErrorNode.__init__	xmpp.protocol.ErrorNode-class.html#__init__
xmpp.simplexml.Node.setName	xmpp.simplexml.Node-class.html#setName
xmpp.simplexml.Node.clearData	xmpp.simplexml.Node-class.html#clearData
xmpp.simplexml.Node.setParent	xmpp.simplexml.Node-class.html#setParent
xmpp.simplexml.Node.getName	xmpp.simplexml.Node-class.html#getName
xmpp.simplexml.Node.__getattr__	xmpp.simplexml.Node-class.html#__getattr__
xmpp.simplexml.Node.getData	xmpp.simplexml.Node-class.html#getData
xmpp.simplexml.Node.getTagData	xmpp.simplexml.Node-class.html#getTagData
xmpp.simplexml.Node.setData	xmpp.simplexml.Node-class.html#setData
xmpp.simplexml.Node.setTagData	xmpp.simplexml.Node-class.html#setTagData
xmpp.simplexml.Node.__getitem__	xmpp.simplexml.Node-class.html#__getitem__
xmpp.simplexml.Node.getTagAttr	xmpp.simplexml.Node-class.html#getTagAttr
xmpp.simplexml.Node.__setitem__	xmpp.simplexml.Node-class.html#__setitem__
xmpp.simplexml.Node.getPayload	xmpp.simplexml.Node-class.html#getPayload
xmpp.simplexml.Node.getTag	xmpp.simplexml.Node-class.html#getTag
xmpp.simplexml.Node.setTagAttr	xmpp.simplexml.Node-class.html#setTagAttr
xmpp.simplexml.Node.getTags	xmpp.simplexml.Node-class.html#getTags
xmpp.simplexml.Node.__delitem__	xmpp.simplexml.Node-class.html#__delitem__
xmpp.simplexml.Node.getParent	xmpp.simplexml.Node-class.html#getParent
xmpp.simplexml.Node.getCDATA	xmpp.simplexml.Node-class.html#getCDATA
xmpp.simplexml.Node.setAttr	xmpp.simplexml.Node-class.html#setAttr
xmpp.simplexml.Node.delChild	xmpp.simplexml.Node-class.html#delChild
xmpp.simplexml.Node.getAttr	xmpp.simplexml.Node-class.html#getAttr
xmpp.simplexml.Node.addData	xmpp.simplexml.Node-class.html#addData
xmpp.simplexml.Node.setPayload	xmpp.simplexml.Node-class.html#setPayload
xmpp.simplexml.Node.FORCE_NODE_RECREATION	xmpp.simplexml.Node-class.html#FORCE_NODE_RECREATION
xmpp.simplexml.Node.setTag	xmpp.simplexml.Node-class.html#setTag
xmpp.protocol.HostGone	xmpp.protocol.HostGone-class.html
xmpp.protocol.HostUnknown	xmpp.protocol.HostUnknown-class.html
xmpp.protocol.ImproperAddressing	xmpp.protocol.ImproperAddressing-class.html
xmpp.protocol.InternalServerError	xmpp.protocol.InternalServerError-class.html
xmpp.protocol.InvalidFrom	xmpp.protocol.InvalidFrom-class.html
xmpp.protocol.InvalidID	xmpp.protocol.InvalidID-class.html
xmpp.protocol.InvalidNamespace	xmpp.protocol.InvalidNamespace-class.html
xmpp.protocol.InvalidXML	xmpp.protocol.InvalidXML-class.html
xmpp.protocol.Iq	xmpp.protocol.Iq-class.html
xmpp.simplexml.Node.addChild	xmpp.simplexml.Node-class.html#addChild
xmpp.simplexml.Node.getAttrs	xmpp.simplexml.Node-class.html#getAttrs
xmpp.protocol.Protocol.setFrom	xmpp.protocol.Protocol-class.html#setFrom
xmpp.simplexml.Node.setNamespace	xmpp.simplexml.Node-class.html#setNamespace
xmpp.simplexml.Node.__str__	xmpp.simplexml.Node-class.html#__str__
xmpp.simplexml.Node.getNamespace	xmpp.simplexml.Node-class.html#getNamespace
xmpp.protocol.Protocol.getID	xmpp.protocol.Protocol-class.html#getID
xmpp.simplexml.Node.getChildren	xmpp.simplexml.Node-class.html#getChildren
xmpp.simplexml.Node.has_attr	xmpp.simplexml.Node-class.html#has_attr
xmpp.protocol.Protocol.setTo	xmpp.protocol.Protocol-class.html#setTo
xmpp.protocol.Iq.getQueryNS	xmpp.protocol.Iq-class.html#getQueryNS
xmpp.simplexml.Node.delAttr	xmpp.simplexml.Node-class.html#delAttr
xmpp.protocol.Protocol.setError	xmpp.protocol.Protocol-class.html#setError
xmpp.protocol.Iq.__init__	xmpp.protocol.Iq-class.html#__init__
xmpp.protocol.Protocol.setType	xmpp.protocol.Protocol-class.html#setType
xmpp.protocol.Protocol.getTo	xmpp.protocol.Protocol-class.html#getTo
xmpp.simplexml.Node.__getitem__	xmpp.simplexml.Node-class.html#__getitem__
xmpp.protocol.Protocol.getError	xmpp.protocol.Protocol-class.html#getError
xmpp.simplexml.Node.setParent	xmpp.simplexml.Node-class.html#setParent
xmpp.simplexml.Node.getName	xmpp.simplexml.Node-class.html#getName
xmpp.protocol.Protocol.getFrom	xmpp.protocol.Protocol-class.html#getFrom
xmpp.protocol.Protocol.setTimestamp	xmpp.protocol.Protocol-class.html#setTimestamp
xmpp.protocol.Iq.getQueryPayload	xmpp.protocol.Iq-class.html#getQueryPayload
xmpp.simplexml.Node.__getattr__	xmpp.simplexml.Node-class.html#__getattr__
xmpp.simplexml.Node.getTags	xmpp.simplexml.Node-class.html#getTags
xmpp.protocol.Protocol.getTimestamp	xmpp.protocol.Protocol-class.html#getTimestamp
xmpp.protocol.Iq.setQueryPayload	xmpp.protocol.Iq-class.html#setQueryPayload
xmpp.simplexml.Node.getData	xmpp.simplexml.Node-class.html#getData
xmpp.simplexml.Node.getTagData	xmpp.simplexml.Node-class.html#getTagData
xmpp.simplexml.Node.setData	xmpp.simplexml.Node-class.html#setData
xmpp.protocol.Protocol.getErrorCode	xmpp.protocol.Protocol-class.html#getErrorCode
xmpp.simplexml.Node.setTagData	xmpp.simplexml.Node-class.html#setTagData
xmpp.simplexml.Node.setName	xmpp.simplexml.Node-class.html#setName
xmpp.simplexml.Node.setTag	xmpp.simplexml.Node-class.html#setTag
xmpp.protocol.Iq.buildReply	xmpp.protocol.Iq-class.html#buildReply
xmpp.simplexml.Node.getTagAttr	xmpp.simplexml.Node-class.html#getTagAttr
xmpp.protocol.Protocol.getType	xmpp.protocol.Protocol-class.html#getType
xmpp.protocol.Iq.getQueryChildren	xmpp.protocol.Iq-class.html#getQueryChildren
xmpp.protocol.Protocol.__setitem__	xmpp.protocol.Protocol-class.html#__setitem__
xmpp.simplexml.Node.getPayload	xmpp.simplexml.Node-class.html#getPayload
xmpp.protocol.Protocol.setID	xmpp.protocol.Protocol-class.html#setID
xmpp.simplexml.Node.setTagAttr	xmpp.simplexml.Node-class.html#setTagAttr
xmpp.simplexml.Node.getParent	xmpp.simplexml.Node-class.html#getParent
xmpp.protocol.Iq.getQuerynode	xmpp.protocol.Iq-class.html#getQuerynode
xmpp.simplexml.Node.__delitem__	xmpp.simplexml.Node-class.html#__delitem__
xmpp.simplexml.Node.clearData	xmpp.simplexml.Node-class.html#clearData
xmpp.simplexml.Node.getCDATA	xmpp.simplexml.Node-class.html#getCDATA
xmpp.simplexml.Node.setAttr	xmpp.simplexml.Node-class.html#setAttr
xmpp.simplexml.Node.delChild	xmpp.simplexml.Node-class.html#delChild
xmpp.simplexml.Node.getAttr	xmpp.simplexml.Node-class.html#getAttr
xmpp.simplexml.Node.addData	xmpp.simplexml.Node-class.html#addData
xmpp.simplexml.Node.setPayload	xmpp.simplexml.Node-class.html#setPayload
xmpp.simplexml.Node.FORCE_NODE_RECREATION	xmpp.simplexml.Node-class.html#FORCE_NODE_RECREATION
xmpp.protocol.Protocol.getProperties	xmpp.protocol.Protocol-class.html#getProperties
xmpp.protocol.Iq.setQueryNS	xmpp.protocol.Iq-class.html#setQueryNS
xmpp.protocol.Iq.setQuerynode	xmpp.protocol.Iq-class.html#setQuerynode
xmpp.simplexml.Node.getTag	xmpp.simplexml.Node-class.html#getTag
xmpp.protocol.JID	xmpp.protocol.JID-class.html
xmpp.protocol.JID.getDomain	xmpp.protocol.JID-class.html#getDomain
xmpp.protocol.JID.bareMatch	xmpp.protocol.JID-class.html#bareMatch
xmpp.protocol.JID.setNode	xmpp.protocol.JID-class.html#setNode
xmpp.protocol.JID.getStripped	xmpp.protocol.JID-class.html#getStripped
xmpp.protocol.JID.setResource	xmpp.protocol.JID-class.html#setResource
xmpp.protocol.JID.__str__	xmpp.protocol.JID-class.html#__str__
xmpp.protocol.JID.getResource	xmpp.protocol.JID-class.html#getResource
xmpp.protocol.JID.setDomain	xmpp.protocol.JID-class.html#setDomain
xmpp.protocol.JID.__hash__	xmpp.protocol.JID-class.html#__hash__
xmpp.protocol.JID.__ne__	xmpp.protocol.JID-class.html#__ne__
xmpp.protocol.JID.__eq__	xmpp.protocol.JID-class.html#__eq__
xmpp.protocol.JID.__init__	xmpp.protocol.JID-class.html#__init__
xmpp.protocol.JID.getNode	xmpp.protocol.JID-class.html#getNode
xmpp.protocol.Message	xmpp.protocol.Message-class.html
xmpp.simplexml.Node.addChild	xmpp.simplexml.Node-class.html#addChild
xmpp.simplexml.Node.getAttrs	xmpp.simplexml.Node-class.html#getAttrs
xmpp.protocol.Message.getSubject	xmpp.protocol.Message-class.html#getSubject
xmpp.protocol.Protocol.setFrom	xmpp.protocol.Protocol-class.html#setFrom
xmpp.simplexml.Node.setNamespace	xmpp.simplexml.Node-class.html#setNamespace
xmpp.simplexml.Node.__str__	xmpp.simplexml.Node-class.html#__str__
xmpp.simplexml.Node.getNamespace	xmpp.simplexml.Node-class.html#getNamespace
xmpp.protocol.Protocol.getID	xmpp.protocol.Protocol-class.html#getID
xmpp.simplexml.Node.getChildren	xmpp.simplexml.Node-class.html#getChildren
xmpp.simplexml.Node.has_attr	xmpp.simplexml.Node-class.html#has_attr
xmpp.protocol.Protocol.setTo	xmpp.protocol.Protocol-class.html#setTo
xmpp.simplexml.Node.getTag	xmpp.simplexml.Node-class.html#getTag
xmpp.simplexml.Node.delAttr	xmpp.simplexml.Node-class.html#delAttr
xmpp.protocol.Protocol.setError	xmpp.protocol.Protocol-class.html#setError
xmpp.protocol.Message.__init__	xmpp.protocol.Message-class.html#__init__
xmpp.protocol.Protocol.setType	xmpp.protocol.Protocol-class.html#setType
xmpp.protocol.Protocol.getTo	xmpp.protocol.Protocol-class.html#getTo
xmpp.protocol.Message.setBody	xmpp.protocol.Message-class.html#setBody
xmpp.simplexml.Node.__getitem__	xmpp.simplexml.Node-class.html#__getitem__
xmpp.protocol.Protocol.getError	xmpp.protocol.Protocol-class.html#getError
xmpp.simplexml.Node.setParent	xmpp.simplexml.Node-class.html#setParent
xmpp.simplexml.Node.getName	xmpp.simplexml.Node-class.html#getName
xmpp.protocol.Protocol.getFrom	xmpp.protocol.Protocol-class.html#getFrom
xmpp.protocol.Protocol.setTimestamp	xmpp.protocol.Protocol-class.html#setTimestamp
xmpp.simplexml.Node.__getattr__	xmpp.simplexml.Node-class.html#__getattr__
xmpp.simplexml.Node.clearData	xmpp.simplexml.Node-class.html#clearData
xmpp.protocol.Protocol.getTimestamp	xmpp.protocol.Protocol-class.html#getTimestamp
xmpp.simplexml.Node.getData	xmpp.simplexml.Node-class.html#getData
xmpp.simplexml.Node.getTagData	xmpp.simplexml.Node-class.html#getTagData
xmpp.simplexml.Node.setData	xmpp.simplexml.Node-class.html#setData
xmpp.protocol.Protocol.getErrorCode	xmpp.protocol.Protocol-class.html#getErrorCode
xmpp.simplexml.Node.setTagData	xmpp.simplexml.Node-class.html#setTagData
xmpp.simplexml.Node.setName	xmpp.simplexml.Node-class.html#setName
xmpp.simplexml.Node.setTag	xmpp.simplexml.Node-class.html#setTag
xmpp.protocol.Message.buildReply	xmpp.protocol.Message-class.html#buildReply
xmpp.simplexml.Node.getTagAttr	xmpp.simplexml.Node-class.html#getTagAttr
xmpp.protocol.Message.setThread	xmpp.protocol.Message-class.html#setThread
xmpp.protocol.Protocol.getType	xmpp.protocol.Protocol-class.html#getType
xmpp.protocol.Protocol.__setitem__	xmpp.protocol.Protocol-class.html#__setitem__
xmpp.simplexml.Node.getPayload	xmpp.simplexml.Node-class.html#getPayload
xmpp.protocol.Protocol.setID	xmpp.protocol.Protocol-class.html#setID
xmpp.simplexml.Node.setTagAttr	xmpp.simplexml.Node-class.html#setTagAttr
xmpp.simplexml.Node.getParent	xmpp.simplexml.Node-class.html#getParent
xmpp.simplexml.Node.getTags	xmpp.simplexml.Node-class.html#getTags
xmpp.simplexml.Node.__delitem__	xmpp.simplexml.Node-class.html#__delitem__
xmpp.protocol.Message.getThread	xmpp.protocol.Message-class.html#getThread
xmpp.simplexml.Node.getCDATA	xmpp.simplexml.Node-class.html#getCDATA
xmpp.simplexml.Node.setAttr	xmpp.simplexml.Node-class.html#setAttr
xmpp.simplexml.Node.delChild	xmpp.simplexml.Node-class.html#delChild
xmpp.simplexml.Node.getAttr	xmpp.simplexml.Node-class.html#getAttr
xmpp.simplexml.Node.addData	xmpp.simplexml.Node-class.html#addData
xmpp.simplexml.Node.setPayload	xmpp.simplexml.Node-class.html#setPayload
xmpp.protocol.Message.setSubject	xmpp.protocol.Message-class.html#setSubject
xmpp.simplexml.Node.FORCE_NODE_RECREATION	xmpp.simplexml.Node-class.html#FORCE_NODE_RECREATION
xmpp.protocol.Protocol.getProperties	xmpp.protocol.Protocol-class.html#getProperties
xmpp.protocol.Message.getBody	xmpp.protocol.Message-class.html#getBody
xmpp.protocol.NodeProcessed	xmpp.protocol.NodeProcessed-class.html
xmpp.protocol.NotAuthorized	xmpp.protocol.NotAuthorized-class.html
xmpp.protocol.PolicyViolation	xmpp.protocol.PolicyViolation-class.html
xmpp.protocol.Presence	xmpp.protocol.Presence-class.html
xmpp.simplexml.Node.addChild	xmpp.simplexml.Node-class.html#addChild
xmpp.protocol.Protocol.getFrom	xmpp.protocol.Protocol-class.html#getFrom
xmpp.protocol.Presence.getStatusCode	xmpp.protocol.Presence-class.html#getStatusCode
xmpp.protocol.Presence.getPriority	xmpp.protocol.Presence-class.html#getPriority
xmpp.protocol.Presence.getAffiliation	xmpp.protocol.Presence-class.html#getAffiliation
xmpp.simplexml.Node.setNamespace	xmpp.simplexml.Node-class.html#setNamespace
xmpp.simplexml.Node.__str__	xmpp.simplexml.Node-class.html#__str__
xmpp.simplexml.Node.setAttr	xmpp.simplexml.Node-class.html#setAttr
xmpp.simplexml.Node.getNamespace	xmpp.simplexml.Node-class.html#getNamespace
xmpp.protocol.Protocol.getID	xmpp.protocol.Protocol-class.html#getID
xmpp.simplexml.Node.getChildren	xmpp.simplexml.Node-class.html#getChildren
xmpp.protocol.Presence.setPriority	xmpp.protocol.Presence-class.html#setPriority
xmpp.simplexml.Node.has_attr	xmpp.simplexml.Node-class.html#has_attr
xmpp.protocol.Protocol.setTo	xmpp.protocol.Protocol-class.html#setTo
xmpp.simplexml.Node.getAttrs	xmpp.simplexml.Node-class.html#getAttrs
xmpp.protocol.Presence.getActor	xmpp.protocol.Presence-class.html#getActor
xmpp.simplexml.Node.delAttr	xmpp.simplexml.Node-class.html#delAttr
xmpp.protocol.Protocol.setError	xmpp.protocol.Protocol-class.html#setError
xmpp.protocol.Presence.__init__	xmpp.protocol.Presence-class.html#__init__
xmpp.protocol.Protocol.setType	xmpp.protocol.Protocol-class.html#setType
xmpp.protocol.Presence.getShow	xmpp.protocol.Presence-class.html#getShow
xmpp.protocol.Protocol.getTo	xmpp.protocol.Protocol-class.html#getTo
xmpp.simplexml.Node.setName	xmpp.simplexml.Node-class.html#setName
xmpp.protocol.Protocol.getError	xmpp.protocol.Protocol-class.html#getError
xmpp.simplexml.Node.setParent	xmpp.simplexml.Node-class.html#setParent
xmpp.simplexml.Node.getName	xmpp.simplexml.Node-class.html#getName
xmpp.protocol.Presence.getStatus	xmpp.protocol.Presence-class.html#getStatus
xmpp.protocol.Protocol.setTimestamp	xmpp.protocol.Protocol-class.html#setTimestamp
xmpp.simplexml.Node.__getattr__	xmpp.simplexml.Node-class.html#__getattr__
xmpp.protocol.Presence.setStatus	xmpp.protocol.Presence-class.html#setStatus
xmpp.simplexml.Node.clearData	xmpp.simplexml.Node-class.html#clearData
xmpp.protocol.Protocol.getTimestamp	xmpp.protocol.Protocol-class.html#getTimestamp
xmpp.protocol.Presence.getRole	xmpp.protocol.Presence-class.html#getRole
xmpp.simplexml.Node.getTagData	xmpp.simplexml.Node-class.html#getTagData
xmpp.simplexml.Node.setData	xmpp.simplexml.Node-class.html#setData
xmpp.protocol.Protocol.getErrorCode	xmpp.protocol.Protocol-class.html#getErrorCode
xmpp.simplexml.Node.setTagData	xmpp.simplexml.Node-class.html#setTagData
xmpp.simplexml.Node.setTag	xmpp.simplexml.Node-class.html#setTag
xmpp.simplexml.Node.__getitem__	xmpp.simplexml.Node-class.html#__getitem__
xmpp.simplexml.Node.getTagAttr	xmpp.simplexml.Node-class.html#getTagAttr
xmpp.protocol.Protocol.getType	xmpp.protocol.Protocol-class.html#getType
xmpp.protocol.Protocol.__setitem__	xmpp.protocol.Protocol-class.html#__setitem__
xmpp.protocol.Presence.getJid	xmpp.protocol.Presence-class.html#getJid
xmpp.simplexml.Node.getPayload	xmpp.simplexml.Node-class.html#getPayload
xmpp.protocol.Protocol.setID	xmpp.protocol.Protocol-class.html#setID
xmpp.simplexml.Node.setTagAttr	xmpp.simplexml.Node-class.html#setTagAttr
xmpp.simplexml.Node.getParent	xmpp.simplexml.Node-class.html#getParent
xmpp.simplexml.Node.getTags	xmpp.simplexml.Node-class.html#getTags
xmpp.simplexml.Node.__delitem__	xmpp.simplexml.Node-class.html#__delitem__
xmpp.simplexml.Node.getData	xmpp.simplexml.Node-class.html#getData
xmpp.protocol.Presence.setShow	xmpp.protocol.Presence-class.html#setShow
xmpp.protocol.Presence.getNick	xmpp.protocol.Presence-class.html#getNick
xmpp.simplexml.Node.getCDATA	xmpp.simplexml.Node-class.html#getCDATA
xmpp.protocol.Presence._muc_getSubTagDataAttr	xmpp.protocol.Presence-class.html#_muc_getSubTagDataAttr
xmpp.protocol.Presence.getReason	xmpp.protocol.Presence-class.html#getReason
xmpp.simplexml.Node.delChild	xmpp.simplexml.Node-class.html#delChild
xmpp.simplexml.Node.getAttr	xmpp.simplexml.Node-class.html#getAttr
xmpp.simplexml.Node.addData	xmpp.simplexml.Node-class.html#addData
xmpp.simplexml.Node.setPayload	xmpp.simplexml.Node-class.html#setPayload
xmpp.simplexml.Node.FORCE_NODE_RECREATION	xmpp.simplexml.Node-class.html#FORCE_NODE_RECREATION
xmpp.protocol.Protocol.getProperties	xmpp.protocol.Protocol-class.html#getProperties
xmpp.protocol.Protocol.setFrom	xmpp.protocol.Protocol-class.html#setFrom
xmpp.protocol.Presence._muc_getItemAttr	xmpp.protocol.Presence-class.html#_muc_getItemAttr
xmpp.simplexml.Node.getTag	xmpp.simplexml.Node-class.html#getTag
xmpp.protocol.Protocol	xmpp.protocol.Protocol-class.html
xmpp.simplexml.Node.addChild	xmpp.simplexml.Node-class.html#addChild
xmpp.simplexml.Node.getAttrs	xmpp.simplexml.Node-class.html#getAttrs
xmpp.protocol.Protocol.setFrom	xmpp.protocol.Protocol-class.html#setFrom
xmpp.simplexml.Node.setNamespace	xmpp.simplexml.Node-class.html#setNamespace
xmpp.simplexml.Node.__str__	xmpp.simplexml.Node-class.html#__str__
xmpp.simplexml.Node.getNamespace	xmpp.simplexml.Node-class.html#getNamespace
xmpp.protocol.Protocol.getID	xmpp.protocol.Protocol-class.html#getID
xmpp.simplexml.Node.getChildren	xmpp.simplexml.Node-class.html#getChildren
xmpp.simplexml.Node.has_attr	xmpp.simplexml.Node-class.html#has_attr
xmpp.protocol.Protocol.setTo	xmpp.protocol.Protocol-class.html#setTo
xmpp.simplexml.Node.delAttr	xmpp.simplexml.Node-class.html#delAttr
xmpp.protocol.Protocol.setError	xmpp.protocol.Protocol-class.html#setError
xmpp.protocol.Protocol.__init__	xmpp.protocol.Protocol-class.html#__init__
xmpp.protocol.Protocol.setType	xmpp.protocol.Protocol-class.html#setType
xmpp.protocol.Protocol.getTo	xmpp.protocol.Protocol-class.html#getTo
xmpp.simplexml.Node.setName	xmpp.simplexml.Node-class.html#setName
xmpp.protocol.Protocol.getError	xmpp.protocol.Protocol-class.html#getError
xmpp.simplexml.Node.setParent	xmpp.simplexml.Node-class.html#setParent
xmpp.simplexml.Node.getName	xmpp.simplexml.Node-class.html#getName
xmpp.protocol.Protocol.getFrom	xmpp.protocol.Protocol-class.html#getFrom
xmpp.protocol.Protocol.setTimestamp	xmpp.protocol.Protocol-class.html#setTimestamp
xmpp.simplexml.Node.__getattr__	xmpp.simplexml.Node-class.html#__getattr__
xmpp.protocol.Protocol.getTimestamp	xmpp.protocol.Protocol-class.html#getTimestamp
xmpp.simplexml.Node.getData	xmpp.simplexml.Node-class.html#getData
xmpp.simplexml.Node.getTagData	xmpp.simplexml.Node-class.html#getTagData
xmpp.simplexml.Node.setData	xmpp.simplexml.Node-class.html#setData
xmpp.protocol.Protocol.getErrorCode	xmpp.protocol.Protocol-class.html#getErrorCode
xmpp.simplexml.Node.setTagData	xmpp.simplexml.Node-class.html#setTagData
xmpp.simplexml.Node.setTag	xmpp.simplexml.Node-class.html#setTag
xmpp.simplexml.Node.__getitem__	xmpp.simplexml.Node-class.html#__getitem__
xmpp.simplexml.Node.getTagAttr	xmpp.simplexml.Node-class.html#getTagAttr
xmpp.protocol.Protocol.getType	xmpp.protocol.Protocol-class.html#getType
xmpp.protocol.Protocol.__setitem__	xmpp.protocol.Protocol-class.html#__setitem__
xmpp.simplexml.Node.getPayload	xmpp.simplexml.Node-class.html#getPayload
xmpp.protocol.Protocol.setID	xmpp.protocol.Protocol-class.html#setID
xmpp.simplexml.Node.setTagAttr	xmpp.simplexml.Node-class.html#setTagAttr
xmpp.simplexml.Node.getParent	xmpp.simplexml.Node-class.html#getParent
xmpp.simplexml.Node.getTags	xmpp.simplexml.Node-class.html#getTags
xmpp.simplexml.Node.__delitem__	xmpp.simplexml.Node-class.html#__delitem__
xmpp.simplexml.Node.clearData	xmpp.simplexml.Node-class.html#clearData
xmpp.simplexml.Node.getCDATA	xmpp.simplexml.Node-class.html#getCDATA
xmpp.simplexml.Node.setAttr	xmpp.simplexml.Node-class.html#setAttr
xmpp.simplexml.Node.delChild	xmpp.simplexml.Node-class.html#delChild
xmpp.simplexml.Node.getAttr	xmpp.simplexml.Node-class.html#getAttr
xmpp.simplexml.Node.addData	xmpp.simplexml.Node-class.html#addData
xmpp.simplexml.Node.setPayload	xmpp.simplexml.Node-class.html#setPayload
xmpp.simplexml.Node.FORCE_NODE_RECREATION	xmpp.simplexml.Node-class.html#FORCE_NODE_RECREATION
xmpp.protocol.Protocol.getProperties	xmpp.protocol.Protocol-class.html#getProperties
xmpp.simplexml.Node.getTag	xmpp.simplexml.Node-class.html#getTag
xmpp.protocol.RemoteConnectionFailed	xmpp.protocol.RemoteConnectionFailed-class.html
xmpp.protocol.ResourceConstraint	xmpp.protocol.ResourceConstraint-class.html
xmpp.protocol.RestrictedXML	xmpp.protocol.RestrictedXML-class.html
xmpp.protocol.SeeOtherHost	xmpp.protocol.SeeOtherHost-class.html
xmpp.protocol.StreamError	xmpp.protocol.StreamError-class.html
xmpp.protocol.SystemShutdown	xmpp.protocol.SystemShutdown-class.html
xmpp.protocol.UndefinedCondition	xmpp.protocol.UndefinedCondition-class.html
xmpp.protocol.UnsupportedEncoding	xmpp.protocol.UnsupportedEncoding-class.html
xmpp.protocol.UnsupportedStanzaType	xmpp.protocol.UnsupportedStanzaType-class.html
xmpp.protocol.UnsupportedVersion	xmpp.protocol.UnsupportedVersion-class.html
xmpp.protocol.XMLNotWellFormed	xmpp.protocol.XMLNotWellFormed-class.html
xmpp.roster.Roster	xmpp.roster.Roster-class.html
xmpp.roster.Roster._getResourceData	xmpp.roster.Roster-class.html#_getResourceData
xmpp.roster.Roster.getGroups	xmpp.roster.Roster-class.html#getGroups
xmpp.roster.Roster.getPriority	xmpp.roster.Roster-class.html#getPriority
xmpp.roster.Roster.getRawRoster	xmpp.roster.Roster-class.html#getRawRoster
xmpp.roster.Roster.PresenceHandler	xmpp.roster.Roster-class.html#PresenceHandler
xmpp.roster.Roster._getItemData	xmpp.roster.Roster-class.html#_getItemData
xmpp.roster.Roster.__init__	xmpp.roster.Roster-class.html#__init__
xmpp.roster.Roster.getShow	xmpp.roster.Roster-class.html#getShow
xmpp.roster.Roster.getRoster	xmpp.roster.Roster-class.html#getRoster
xmpp.roster.Roster.Unauthorize	xmpp.roster.Roster-class.html#Unauthorize
xmpp.roster.Roster.getName	xmpp.roster.Roster-class.html#getName
xmpp.roster.Roster.getStatus	xmpp.roster.Roster-class.html#getStatus
xmpp.roster.Roster.getItems	xmpp.roster.Roster-class.html#getItems
xmpp.roster.Roster.Unsubscribe	xmpp.roster.Roster-class.html#Unsubscribe
xmpp.roster.Roster.RosterIqHandler	xmpp.roster.Roster-class.html#RosterIqHandler
xmpp.roster.Roster.getRawItem	xmpp.roster.Roster-class.html#getRawItem
xmpp.roster.Roster.__getitem__	xmpp.roster.Roster-class.html#__getitem__
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.roster.Roster.keys	xmpp.roster.Roster-class.html#keys
xmpp.roster.Roster.Request	xmpp.roster.Roster-class.html#Request
xmpp.roster.Roster.getAsk	xmpp.roster.Roster-class.html#getAsk
xmpp.roster.Roster.setItem	xmpp.roster.Roster-class.html#setItem
xmpp.roster.Roster.getItem	xmpp.roster.Roster-class.html#getItem
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.roster.Roster.Authorize	xmpp.roster.Roster-class.html#Authorize
xmpp.roster.Roster.plugin	xmpp.roster.Roster-class.html#plugin
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.roster.Roster.Subscribe	xmpp.roster.Roster-class.html#Subscribe
xmpp.roster.Roster.delItem	xmpp.roster.Roster-class.html#delItem
xmpp.roster.Roster.getSubscription	xmpp.roster.Roster-class.html#getSubscription
xmpp.roster.Roster.getResources	xmpp.roster.Roster-class.html#getResources
xmpp.session.Session	xmpp.session.Session-class.html
xmpp.session.Session.terminate_stream	xmpp.session.Session-class.html#terminate_stream
xmpp.session.Session._destroy_socket	xmpp.session.Session-class.html#_destroy_socket
xmpp.session.Session.stop_feature	xmpp.session.Session-class.html#stop_feature
xmpp.session.Session.flush_queue	xmpp.session.Session-class.html#flush_queue
xmpp.session.Session.set_socket_state	xmpp.session.Session-class.html#set_socket_state
xmpp.session.Session.StartStream	xmpp.session.Session-class.html#StartStream
xmpp.session.Session.start_feature	xmpp.session.Session-class.html#start_feature
xmpp.session.Session.feature	xmpp.session.Session-class.html#feature
xmpp.session.Session.push_queue	xmpp.session.Session-class.html#push_queue
xmpp.session.Session.sendnow	xmpp.session.Session-class.html#sendnow
xmpp.session.Session.enqueue	xmpp.session.Session-class.html#enqueue
xmpp.session.Session.__init__	xmpp.session.Session-class.html#__init__
xmpp.session.Session.unfeature	xmpp.session.Session-class.html#unfeature
xmpp.session.Session._catch_stream_id	xmpp.session.Session-class.html#_catch_stream_id
xmpp.session.Session.set_session_state	xmpp.session.Session-class.html#set_session_state
xmpp.session.Session._dispatch	xmpp.session.Session-class.html#_dispatch
xmpp.session.Session.set_stream_state	xmpp.session.Session-class.html#set_stream_state
xmpp.session.Session._stream_close	xmpp.session.Session-class.html#_stream_close
xmpp.session.Session.receive	xmpp.session.Session-class.html#receive
xmpp.session.Session._stream_open	xmpp.session.Session-class.html#_stream_open
xmpp.simplexml.NT	xmpp.simplexml.NT-class.html
xmpp.simplexml.T.__delattr__	xmpp.simplexml.T-class.html#__delattr__
xmpp.simplexml.NT.__setattr__	xmpp.simplexml.NT-class.html#__setattr__
xmpp.simplexml.T.__init__	xmpp.simplexml.T-class.html#__init__
xmpp.simplexml.NT.__getattr__	xmpp.simplexml.NT-class.html#__getattr__
xmpp.simplexml.Node	xmpp.simplexml.Node-class.html
xmpp.simplexml.Node.addChild	xmpp.simplexml.Node-class.html#addChild
xmpp.simplexml.Node.getAttrs	xmpp.simplexml.Node-class.html#getAttrs
xmpp.simplexml.Node.delAttr	xmpp.simplexml.Node-class.html#delAttr
xmpp.simplexml.Node.setNamespace	xmpp.simplexml.Node-class.html#setNamespace
xmpp.simplexml.Node.__str__	xmpp.simplexml.Node-class.html#__str__
xmpp.simplexml.Node.getNamespace	xmpp.simplexml.Node-class.html#getNamespace
xmpp.simplexml.Node.getChildren	xmpp.simplexml.Node-class.html#getChildren
xmpp.simplexml.Node.addData	xmpp.simplexml.Node-class.html#addData
xmpp.simplexml.Node.__init__	xmpp.simplexml.Node-class.html#__init__
xmpp.simplexml.Node.__getitem__	xmpp.simplexml.Node-class.html#__getitem__
xmpp.simplexml.Node.clearData	xmpp.simplexml.Node-class.html#clearData
xmpp.simplexml.Node.setParent	xmpp.simplexml.Node-class.html#setParent
xmpp.simplexml.Node.getName	xmpp.simplexml.Node-class.html#getName
xmpp.simplexml.Node.__getattr__	xmpp.simplexml.Node-class.html#__getattr__
xmpp.simplexml.Node.getData	xmpp.simplexml.Node-class.html#getData
xmpp.simplexml.Node.getTagData	xmpp.simplexml.Node-class.html#getTagData
xmpp.simplexml.Node.setData	xmpp.simplexml.Node-class.html#setData
xmpp.simplexml.Node.setTagData	xmpp.simplexml.Node-class.html#setTagData
xmpp.simplexml.Node.setName	xmpp.simplexml.Node-class.html#setName
xmpp.simplexml.Node.getTagAttr	xmpp.simplexml.Node-class.html#getTagAttr
xmpp.simplexml.Node.__setitem__	xmpp.simplexml.Node-class.html#__setitem__
xmpp.simplexml.Node.getPayload	xmpp.simplexml.Node-class.html#getPayload
xmpp.simplexml.Node.getTag	xmpp.simplexml.Node-class.html#getTag
xmpp.simplexml.Node.setTagAttr	xmpp.simplexml.Node-class.html#setTagAttr
xmpp.simplexml.Node.getTags	xmpp.simplexml.Node-class.html#getTags
xmpp.simplexml.Node.__delitem__	xmpp.simplexml.Node-class.html#__delitem__
xmpp.simplexml.Node.getParent	xmpp.simplexml.Node-class.html#getParent
xmpp.simplexml.Node.getCDATA	xmpp.simplexml.Node-class.html#getCDATA
xmpp.simplexml.Node.setAttr	xmpp.simplexml.Node-class.html#setAttr
xmpp.simplexml.Node.delChild	xmpp.simplexml.Node-class.html#delChild
xmpp.simplexml.Node.getAttr	xmpp.simplexml.Node-class.html#getAttr
xmpp.simplexml.Node.has_attr	xmpp.simplexml.Node-class.html#has_attr
xmpp.simplexml.Node.setPayload	xmpp.simplexml.Node-class.html#setPayload
xmpp.simplexml.Node.FORCE_NODE_RECREATION	xmpp.simplexml.Node-class.html#FORCE_NODE_RECREATION
xmpp.simplexml.Node.setTag	xmpp.simplexml.Node-class.html#setTag
xmpp.simplexml.NodeBuilder	xmpp.simplexml.NodeBuilder-class.html
xmpp.simplexml.NodeBuilder.stream_header_received	xmpp.simplexml.NodeBuilder-class.html#stream_header_received
xmpp.simplexml.NodeBuilder.starttag	xmpp.simplexml.NodeBuilder-class.html#starttag
xmpp.simplexml.NodeBuilder.endtag	xmpp.simplexml.NodeBuilder-class.html#endtag
xmpp.simplexml.NodeBuilder.dispatch	xmpp.simplexml.NodeBuilder-class.html#dispatch
xmpp.simplexml.NodeBuilder.getDom	xmpp.simplexml.NodeBuilder-class.html#getDom
xmpp.simplexml.NodeBuilder.handle_namespace_start	xmpp.simplexml.NodeBuilder-class.html#handle_namespace_start
xmpp.simplexml.NodeBuilder.stream_footer_received	xmpp.simplexml.NodeBuilder-class.html#stream_footer_received
xmpp.simplexml.NodeBuilder.DEBUG	xmpp.simplexml.NodeBuilder-class.html#DEBUG
xmpp.simplexml.NodeBuilder.destroy	xmpp.simplexml.NodeBuilder-class.html#destroy
xmpp.simplexml.NodeBuilder.handle_data	xmpp.simplexml.NodeBuilder-class.html#handle_data
xmpp.simplexml.NodeBuilder.__init__	xmpp.simplexml.NodeBuilder-class.html#__init__
xmpp.simplexml.T	xmpp.simplexml.T-class.html
xmpp.simplexml.T.__delattr__	xmpp.simplexml.T-class.html#__delattr__
xmpp.simplexml.T.__setattr__	xmpp.simplexml.T-class.html#__setattr__
xmpp.simplexml.T.__init__	xmpp.simplexml.T-class.html#__init__
xmpp.simplexml.T.__getattr__	xmpp.simplexml.T-class.html#__getattr__
xmpp.transports.HTTPPROXYsocket	xmpp.transports.HTTPPROXYsocket-class.html
xmpp.transports.TCPsocket.pending_data	xmpp.transports.TCPsocket-class.html#pending_data
xmpp.transports.TCPsocket.disconnect	xmpp.transports.TCPsocket-class.html#disconnect
xmpp.transports.TCPsocket.disconnected	xmpp.transports.TCPsocket-class.html#disconnected
xmpp.transports.HTTPPROXYsocket.plugin	xmpp.transports.HTTPPROXYsocket-class.html#plugin
xmpp.transports.TCPsocket.receive	xmpp.transports.TCPsocket-class.html#receive
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.transports.TCPsocket.plugout	xmpp.transports.TCPsocket-class.html#plugout
xmpp.transports.TCPsocket.send	xmpp.transports.TCPsocket-class.html#send
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.transports.HTTPPROXYsocket.connect	xmpp.transports.HTTPPROXYsocket-class.html#connect
xmpp.transports.HTTPPROXYsocket.DEBUG	xmpp.transports.HTTPPROXYsocket-class.html#DEBUG
xmpp.transports.TCPsocket.getPort	xmpp.transports.TCPsocket-class.html#getPort
xmpp.transports.TCPsocket.getHost	xmpp.transports.TCPsocket-class.html#getHost
xmpp.transports.HTTPPROXYsocket.__init__	xmpp.transports.HTTPPROXYsocket-class.html#__init__
xmpp.transports.TCPsocket	xmpp.transports.TCPsocket-class.html
xmpp.transports.TCPsocket.pending_data	xmpp.transports.TCPsocket-class.html#pending_data
xmpp.transports.TCPsocket.disconnect	xmpp.transports.TCPsocket-class.html#disconnect
xmpp.transports.TCPsocket.disconnected	xmpp.transports.TCPsocket-class.html#disconnected
xmpp.transports.TCPsocket.plugout	xmpp.transports.TCPsocket-class.html#plugout
xmpp.transports.TCPsocket.receive	xmpp.transports.TCPsocket-class.html#receive
xmpp.client.PlugIn.PlugIn	xmpp.client.PlugIn-class.html#PlugIn
xmpp.transports.TCPsocket.plugin	xmpp.transports.TCPsocket-class.html#plugin
xmpp.transports.TCPsocket.send	xmpp.transports.TCPsocket-class.html#send
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.transports.TCPsocket.connect	xmpp.transports.TCPsocket-class.html#connect
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.transports.TCPsocket.getPort	xmpp.transports.TCPsocket-class.html#getPort
xmpp.transports.TCPsocket.getHost	xmpp.transports.TCPsocket-class.html#getHost
xmpp.transports.TCPsocket.__init__	xmpp.transports.TCPsocket-class.html#__init__
xmpp.transports.TLS	xmpp.transports.TLS-class.html
xmpp.transports.TLS.pending_data	xmpp.transports.TLS-class.html#pending_data
xmpp.client.PlugIn.PlugOut	xmpp.client.PlugIn-class.html#PlugOut
xmpp.transports.TLS.PlugIn	xmpp.transports.TLS-class.html#PlugIn
xmpp.transports.TLS.plugout	xmpp.transports.TLS-class.html#plugout
xmpp.client.PlugIn.DEBUG	xmpp.client.PlugIn-class.html#DEBUG
xmpp.transports.TLS.FeaturesHandler	xmpp.transports.TLS-class.html#FeaturesHandler
xmpp.transports.TLS.StartTLSHandler	xmpp.transports.TLS-class.html#StartTLSHandler
xmpp.transports.TLS._startSSL	xmpp.transports.TLS-class.html#_startSSL
xmpp.client.PlugIn.__init__	xmpp.client.PlugIn-class.html#__init__
xmpp.transports.error	xmpp.transports.error-class.html
xmpp.transports.error.__str__	xmpp.transports.error-class.html#__str__
xmpp.transports.error.__init__	xmpp.transports.error-class.html#__init__