williamr@2
|
1 |
/*
|
williamr@2
|
2 |
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
williamr@2
|
3 |
* All rights reserved.
|
williamr@2
|
4 |
* This component and the accompanying materials are made available
|
williamr@2
|
5 |
* under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
|
williamr@2
|
6 |
* which accompanies this distribution, and is available
|
williamr@2
|
7 |
* at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
|
williamr@2
|
8 |
*
|
williamr@2
|
9 |
* Initial Contributors:
|
williamr@2
|
10 |
* Nokia Corporation - initial contribution.
|
williamr@2
|
11 |
*
|
williamr@2
|
12 |
* Contributors:
|
williamr@2
|
13 |
*
|
williamr@2
|
14 |
* Description:
|
williamr@2
|
15 |
* Name : SdpCodecConstants.h
|
williamr@2
|
16 |
* Part of : SDPCodec
|
williamr@2
|
17 |
* Constants defination file
|
williamr@2
|
18 |
* Version : 1.0
|
williamr@2
|
19 |
*
|
williamr@2
|
20 |
*/
|
williamr@2
|
21 |
|
williamr@2
|
22 |
|
williamr@2
|
23 |
|
williamr@2
|
24 |
|
williamr@2
|
25 |
#ifndef __SDPCODECCONSTANTS_H__
|
williamr@2
|
26 |
#define __SDPCODECCONSTANTS_H__
|
williamr@2
|
27 |
|
williamr@2
|
28 |
/**
|
williamr@2
|
29 |
* @file
|
williamr@2
|
30 |
* @publishedAll
|
williamr@2
|
31 |
* @released
|
williamr@2
|
32 |
*/
|
williamr@2
|
33 |
|
williamr@2
|
34 |
|
williamr@2
|
35 |
// Delimiter constants
|
williamr@2
|
36 |
const TText8 KDotChar = '.';
|
williamr@2
|
37 |
const TText8 KColonChar = ':';
|
williamr@2
|
38 |
const TText8 KSPChar = ' ';
|
williamr@2
|
39 |
const TText8 KEqualChar = '=';
|
williamr@2
|
40 |
const TText8 KSlashChar = '/';
|
williamr@2
|
41 |
const TText8 KHyphenChar = '-';
|
williamr@2
|
42 |
const TText8 KLFChar = '\n';
|
williamr@2
|
43 |
const TText8 KCRChar = '\r';
|
williamr@2
|
44 |
const TText8 KEofChar = '\0';
|
williamr@2
|
45 |
|
williamr@2
|
46 |
_LIT8(KDotStr, ".");
|
williamr@2
|
47 |
_LIT8(KColonStr, ":");
|
williamr@2
|
48 |
_LIT8(KSPStr, " ");
|
williamr@2
|
49 |
_LIT8(KEqualStr, "=");
|
williamr@2
|
50 |
_LIT8(KSlashStr, "/");
|
williamr@2
|
51 |
_LIT8(KHyphenStr, "-");
|
williamr@2
|
52 |
_LIT8(KCRLFStr, "\r\n");
|
williamr@2
|
53 |
_LIT8(KLFStr, "\n");
|
williamr@2
|
54 |
_LIT8(KCRStr, "\r");
|
williamr@2
|
55 |
_LIT8(KEofStr, "\0");
|
williamr@2
|
56 |
_LIT8(KValidFQDNChars,
|
williamr@2
|
57 |
"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.-");
|
williamr@2
|
58 |
|
williamr@2
|
59 |
#endif
|