From: <dg...@su...> - 2009-02-17 12:03:18
|
Author: bellmich Date: Tue Feb 17 12:31:39 2009 New Revision: 188 URL: http://libwbxml.opensync.org/changeset/188 Log: added support for SourceParent in SyncML 1.1 This is a proprietary extension of SyncML 1.1 from Nokia because SourceParent is only defined for SyncML 1.2. This extension is used for the synchonization of SMS. Modified: wbxml2/trunk/src/wbxml_tables.c Modified: wbxml2/trunk/src/wbxml_tables.c ============================================================================== --- wbxml2/trunk/src/wbxml_tables.c Fri Feb 6 16:40:05 2009 (r187) +++ wbxml2/trunk/src/wbxml_tables.c Tue Feb 17 12:31:39 2009 (r188) @@ -1678,6 +1678,13 @@ { "NumberOfChanges",0x00, 0x33 }, { "MoreData", 0x00, 0x34 }, + /* SourceParent is officially only specified for SyncML 1.2. + * Nevertheless Nokia uses this tag during the synchronization + * of SMS. So this is a proprietary extension to avoid that + * there is a tag called "unknown". + */ + { "SourceParent", 0x00, 0x39 }, + /* Code Page 1: MetInf11 */ { "Anchor", 0x01, 0x05 }, { "EMI", 0x01, 0x06 }, |