Changeset 637
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r636 r637 1 1 2008-07-23 Mark Doliner <mark@meebo.com> 2 * Removed scod module 2 * Removed scod module. 3 3 * Added a maximum stanza limit to c2s. This can be used to set an 4 4 upper limit on the number of individual requests that can be made 5 5 in a given window of time. 6 * Fix a bug in s2s where xmlns="jabber:client" would get appended to an 7 incoming stanza even though the stanza already had an xmlns attribute 8 set. 6 9 7 10 2008-07-15 Tomasz Sterna <tomek@xiaoka.com> -
trunk/s2s/in.c
r629 r637 549 549 } 550 550 551 ns = nad_find_namespace(nad, 0, uri_CLIENT, NULL); 551 /* 552 * If stanza is not in any namespace (either because we removed the 553 * jabber:server namespace above or because it's in the default 554 * namespace for this stream) then this packet is intended to be 555 * handled by sm (and not just routed through the server), so set the 556 * jabber:client namespace. 557 */ 558 ns = nad->elems[0].ns; 552 559 if(ns < 0) { 553 560 ns = nad_add_namespace(nad, uri_CLIENT, NULL);
