mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-02-11 00:00:08 +08:00
32 lines
668 B
Objective-C
32 lines
668 B
Objective-C
//
|
|
// ClientEvent.h
|
|
// OpenVPN NEF Test
|
|
//
|
|
// Created by Sergey Abramchuk on 05.11.16.
|
|
// Copyright © 2016 ss-abramchuk. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/**
|
|
OpenVPN event codes
|
|
*/
|
|
typedef NS_ENUM(NSInteger, OpenVPNEvent) {
|
|
OpenVPNEventDisconnected,
|
|
OpenVPNEventConnected,
|
|
OpenVPNEventReconnecting,
|
|
OpenVPNEventResolve,
|
|
OpenVPNEventWait,
|
|
OpenVPNEventWaitProxy,
|
|
OpenVPNEventConnecting,
|
|
OpenVPNEventGetConfig,
|
|
OpenVPNEventAssignIP,
|
|
OpenVPNEventAddRoutes,
|
|
OpenVPNEventEcho,
|
|
OpenVPNEventInfo,
|
|
OpenVPNEventPause,
|
|
OpenVPNEventResume,
|
|
OpenVPNEventRelay,
|
|
OpenVPNEventUnknown
|
|
};
|