]> git.saurik.com Git - apple/configd.git/blob - Plugins/IPMonitor/configAgent.h
configd-888.20.5.tar.gz
[apple/configd.git] / Plugins / IPMonitor / configAgent.h
1 /*
2 * Copyright (c) 2015, 2016 Apple Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24 #ifndef CONFIG_AGENT_H
25 #define CONFIG_AGENT_H
26
27 #include <net/if.h>
28 #include <net/network_agent.h>
29 #include <net/necp.h>
30 #include <dnsinfo.h>
31 #include <sys/ioctl.h>
32 #include <network_information.h>
33 #include <notify.h>
34 #include <sys/kern_control.h>
35 #include <sys/sys_domain.h>
36 #include <SystemConfiguration/SystemConfiguration.h>
37 #include <SystemConfiguration/SCPrivate.h>
38
39 #import <Foundation/Foundation.h>
40 #import <Network/Network_Private.h>
41 #import <NetworkExtension/NEPolicySession.h>
42 #import <CommonCrypto/CommonDigest.h>
43
44 #import "configAgentDefines.h"
45
46 typedef NS_ENUM(NSUInteger, AgentType) {
47 kAgentTypeUnknown = 0,
48 kAgentTypeProxy,
49 kAgentTypeDNS
50 };
51
52 typedef NS_ENUM(NSUInteger, AgentSubType) {
53 kAgentSubTypeUnknown = 0,
54 kAgentSubTypeScoped,
55 kAgentSubTypeSupplemental,
56 kAgentSubTypeDefault,
57 kAgentSubTypeMulticast,
58 kAgentSubTypePrivate,
59 kAgentSubTypeServiceSpecific
60 };
61
62 os_log_t __log_IPMonitor();
63
64 /* Parameters */
65 #define kEntityName "EntityName"
66 #define kAgentSubType "AgentSubType"
67
68 @interface ConfigAgent : NSObject <NWNetworkAgent>
69
70 - (instancetype)initWithParameters:(NSDictionary *)parameters;
71 - (void)addAgentRegistrationObject:(NWNetworkAgentRegistration *)regObject;
72 - (NWNetworkAgentRegistration *)getRegistrationObject;
73 - (NSString *)getAssociatedEntity;
74 - (NSString *)getAgentName;
75 - (NSData *)getAgentData;
76 - (AgentType)getAgentType;
77 - (AgentSubType)getAgentSubType;
78 - (NSUUID *)getAgentUUID;
79 - (void)setStartHandler:(void (^)(void))startHandler;
80 - (BOOL)startAgentWithOptions:(NSDictionary *)options;
81 - (void)updateAgentData:(NSData *)data;
82 - (BOOL)shouldUpdateAgent;
83 - (id)getAgentMapping;
84 - (void)setAgentMapping:(id)agent;
85
86 - (NSUUID *)createUUIDForName:(NSString *)agentName;
87
88 @end
89
90 #endif /* CONFIG_AGENT_H */