Steve Underwood <[EMAIL PROTECTED]> writes: > There is no need to have ASCII + UTF-8. ASCII is a subset of UTF-8, so > they are fully compatible. Its only when you have 8 bit sets, like the > PC ones, that compatibility is an issue. Just define that all strings > in IAX2 are UTF-8, and that is the end of it.
One problem is that strncpy(), which is used extensively in Asterisk, cannot be used on utf8 strings. The reason is that it might truncate the string in the middle of a multibyte character, leaving invalid utf-8 data in the destination string. - Kristian. -- Kristian Nielsen [EMAIL PROTECTED] Development Manager, Sifira A/S _______________________________________________ Asterisk-Dev mailing list [email protected] http://lists.digium.com/mailman/listinfo/asterisk-dev To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-dev
