|
1 /* |
|
2 * Copyright (c) 2010 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 * |
|
16 */ |
|
17 |
|
18 #ifndef __MDNSSERVERCONSTANTS_H__ |
|
19 #define __MDNSSERVERCONSTANTS_H__ |
|
20 |
|
21 #include <e32base.h> |
|
22 |
|
23 _LIT(KMdnsServerName, "MDnsServer"); |
|
24 _LIT(KMdnsServerExe, "\\sys\\bin\\zeroconf_20008AD8.exe"); |
|
25 |
|
26 enum TMdnsServerMessages |
|
27 { |
|
28 EZeroconfServerMessageVersion, |
|
29 EMdnsServerQueryMessages, |
|
30 EMdnsServerRecieveMessages, |
|
31 EMndsServerPublishMessages, |
|
32 EMdnsServerRecieveNotifyMessages, |
|
33 EMdnsServerStartNotifyMessages, |
|
34 EMdnsServerStopNotifyMessages, |
|
35 }; |
|
36 |
|
37 //const TVersion mdnsServerVersion(0, 8, 0); |
|
38 const TUid KZeroconfServerSID = { 0x20008AD8 }; |
|
39 |
|
40 #endif /* __MDNSSERVERCONSTANTS_H__ */ |