equal
deleted
inserted
replaced
|
1 /** |
|
2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Defines some debug-only contants that can be used to invoke |
|
16 * test-only code in PPP. |
|
17 * |
|
18 * |
|
19 */ |
|
20 |
|
21 |
|
22 |
|
23 /** |
|
24 @file |
|
25 @internalComponent |
|
26 */ |
|
27 |
|
28 #ifndef __PPPDEBUG_H__ |
|
29 #define __PPPDEBUG_H__ |
|
30 |
|
31 #include <in_iface.h> |
|
32 |
|
33 #ifdef _DEBUG |
|
34 /** |
|
35 * Defines a debug-only PPP control option name that |
|
36 * forces the renegotiation of the link. This option name |
|
37 * is for testing only and should not be used for any |
|
38 * other purpose. |
|
39 * |
|
40 * @internalComponent |
|
41 */ |
|
42 const TUint KSoIfForceRenegotiatePPP = KSoIfGetConnectionInfo + 25; // 25 is used to reduce the chance of a conflict. |
|
43 #endif // #ifdef _DEBUG |
|
44 |
|
45 #endif // #ifndef __PPPDEBUG_H__ |