2 * Copyright (c) 2015, 2016 Apple Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
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
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.
21 * @APPLE_LICENSE_HEADER_END@
24 #ifndef CONFIG_AGENT_H
25 #define CONFIG_AGENT_H
28 #include <net/network_agent.h>
31 #include <sys/ioctl.h>
32 #include <network_information.h>
34 #include <sys/kern_control.h>
35 #include <sys/sys_domain.h>
36 #include <SystemConfiguration/SystemConfiguration.h>
37 #include <SystemConfiguration/SCPrivate.h>
39 #import <Foundation/Foundation.h>
40 #import <Network/Network_Private.h>
41 #import <NetworkExtension/NEPolicySession.h>
42 #import <CommonCrypto/CommonDigest.h>
44 #import "configAgentDefines.h"
46 typedef NS_ENUM(NSUInteger
, AgentType
) {
47 kAgentTypeUnknown
= 0,
52 typedef NS_ENUM(NSUInteger
, AgentSubType
) {
53 kAgentSubTypeUnknown
= 0,
55 kAgentSubTypeSupplemental
,
57 kAgentSubTypeMulticast
,
59 kAgentSubTypeServiceSpecific
62 os_log_t
__log_IPMonitor();
65 #define kEntityName "EntityName"
66 #define kAgentSubType "AgentSubType"
68 @interface ConfigAgent
: NSObject
<NWNetworkAgent
>
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
;
86 - (NSUUID
*)createUUIDForName
:(NSString
*)agentName
;
90 #endif /* CONFIG_AGENT_H */