/***************************************************************************** * VLC for iOS ***************************************************************************** * Copyright (c) 2016 VideoLAN. All rights reserved. * $Id$ * * Authors: Vincent L. Cone * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import #import "VLCNetworkLoginDataSourceSection.h" NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(NSInteger, VLCServerProtocol) { VLCServerProtocolSMB, VLCServerProtocolFTP, VLCServerProtocolPLEX, VLCServerProtocolUndefined, }; @class VLCNetworkLoginDataSourceProtocol; @protocol VLCNetworkLoginDataSourceProtocolDelegate - (void)protocolDidChange:(VLCNetworkLoginDataSourceProtocol *)protocolSection; @end @interface VLCNetworkLoginDataSourceProtocol : NSObject @property (nonatomic) VLCServerProtocol protocol; @property (nonatomic, weak) id delegate; @end NS_ASSUME_NONNULL_END