00001 /* 00002 * ============================================================================= 00003 * Name : SdpCodecConstants.h 00004 * Part of : SDPCodec 00005 * Description : Constants defination file 00006 * Version : 1.0 00007 * 00008 * Copyright (c) 2002 Nokia Corporation. 00009 * This material, including documentation and any related 00010 * computer programs, is protected by copyright controlled by 00011 * Nokia Corporation. All rights are reserved. Copying, 00012 * including reproducing, storing, adapting or translating, any 00013 * or all of this material requires the prior written consent of 00014 * Nokia Corporation. This material also contains confidential 00015 * information which may not be disclosed to others without the 00016 * prior written consent of Nokia Corporation. 00017 * ============================================================================= 00018 */ 00019 00020 00021 #ifndef __SDPCODECCONSTANTS_H__ 00022 #define __SDPCODECCONSTANTS_H__ 00023 00024 00025 // Delimiter constants 00026 const TText8 KDotChar = '.'; 00027 const TText8 KColonChar = ':'; 00028 const TText8 KSPChar = ' '; 00029 const TText8 KEqualChar = '='; 00030 const TText8 KSlashChar = '/'; 00031 const TText8 KHyphenChar = '-'; 00032 const TText8 KLFChar = '\n'; 00033 const TText8 KCRChar = '\r'; 00034 const TText8 KEofChar = '\0'; 00035 00036 _LIT8(KDotStr, "."); 00037 _LIT8(KColonStr, ":"); 00038 _LIT8(KSPStr, " "); 00039 _LIT8(KEqualStr, "="); 00040 _LIT8(KSlashStr, "/"); 00041 _LIT8(KHyphenStr, "-"); 00042 _LIT8(KCRLFStr, "\r\n"); 00043 _LIT8(KLFStr, "\n"); 00044 _LIT8(KCRStr, "\r"); 00045 _LIT8(KEofStr, "\0"); 00046 _LIT8(KValidFQDNChars, 00047 "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.-"); 00048 00049 #endif