source: rtems-libbsd/mDNSResponder/mDNSMacOSX/helper-error.h @ f761b29

55-freebsd-126-freebsd-12
Last change on this file since f761b29 was f761b29, checked in by Sebastian Huber <sebastian.huber@…>, on 09/19/18 at 06:52:21

mDNSResponder: Update to v625.41.2

The sources can be obtained via:

https://opensource.apple.com/tarballs/mDNSResponder/mDNSResponder-625.41.2.tar.gz

Update #3522.

  • Property mode set to 100644
File size: 3.2 KB
Line 
1/* -*- Mode: C; tab-width: 4 -*-
2 *
3 * Copyright (c) 2007-2013 Apple Inc. All rights reserved.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 *     http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18ERROR(kmDNSHelperCommunicationFailed,             "Mach communication failed")
19ERROR(kmDNSHelperNotAuthorized,                   "Not authorized")
20ERROR(kmDNSHelperCreationFailed,                  "Object creation failed")
21ERROR(kmDNSHelperInvalidPList,                    "Invalid property list")
22ERROR(kmDNSHelperInvalidNameKey,                  "Invalid name key")
23ERROR(kmDNSHelperInvalidConfigKey,                "Invalid configuration key")
24ERROR(kmDNSHelperTypeError,                       "Object was not of expected type")
25ERROR(kmDNSHelperPreferencesFailed,               "Could not create preferences session")
26ERROR(kmDNSHelperPreferencesLockFailed,           "Could not lock preferences")
27ERROR(kmDNSHelperPreferencesSetFailed,            "Could not update preferences")
28ERROR(kmDNSHelperKeychainCopyDefaultFailed,       "Could not copy keychain default")
29ERROR(kmDNSHelperKeychainSearchCreationFailed,    "Could not create keychain search")
30ERROR(kmDNSHelperPListWriteFailed,                "Could not write property list to stream")
31ERROR(kmDNSHelperResultTooLarge,                  "Result too large")
32ERROR(kmDNSHelperInterfaceCreationFailed,         "Could not create auto-tunnel interface")
33ERROR(kmDNSHelperInterfaceDeletionFailed,         "Could not delete auto-tunnel interface")
34ERROR(kmDNSHelperInvalidInterfaceState,           "Invalid interface state requested")
35ERROR(kmDNSHelperInvalidServerState,              "Invalid server state requested")
36ERROR(kmDNSHelperRacoonConfigCreationFailed,      "Could not create racoon configuration file")
37ERROR(kmDNSHelperRacoonStartFailed,               "Could not start racoon")
38ERROR(kmDNSHelperRacoonNotificationFailed,        "Could not notify racoon")
39ERROR(kmDNSHelperInvalidTunnelSetKeysOperation,   "Invalid tunnel setkey operation requested")
40ERROR(kmDNSHelperInvalidNetworkAddress,           "Invalid network address")
41ERROR(kmDNSHelperRouteAdditionFailed,             "Could not add route")
42ERROR(kmDNSHelperRouteDeletionFailed,             "Could not remove route")
43ERROR(kmDNSHelperRoutingSocketCreationFailed,     "Could not create routing socket")
44ERROR(kmDNSHelperDatagramSocketCreationFailed,    "Could not create datagram socket")
45ERROR(kmDNSHelperIPsecPolicyCreationFailed,       "Could not create IPsec policy")
46ERROR(kmDNSHelperIPsecPolicySetFailed,            "Could not set IPsec policy")
47ERROR(kmDNSHelperIPsecRemoveSAFailed,             "Could not remove IPsec SA")
48ERROR(kmDNSHelperIPsecPolicySocketCreationFailed, "Could not create IPsec policy socket")
49ERROR(kmDNSHelperIPsecDisabled,                   "IPSec support was not compiled in to the helper")
Note: See TracBrowser for help on using the repository browser.