12345678910111213141516171819202122232425262728 |
- /*****************************************************************************
- * VLCLocalNetworkServiceBrowserFTP.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Tobias Conradi <videolan # tobias-conradi.de>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import "VLCLocalNetworkServiceBrowserNetService.h"
- #import "VLCLocalNetworkServiceNetService.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface VLCLocalNetworkServiceBrowserFTP : VLCLocalNetworkServiceBrowserNetService
- - (instancetype)initWithName:(NSString *)name serviceType:(NSString *)serviceType domain:(NSString *)domain NS_UNAVAILABLE;
- - (instancetype)init NS_DESIGNATED_INITIALIZER;
- @end
- extern NSString *const VLCNetworkServerProtocolIdentifierFTP;
- @interface VLCLocalNetworkServiceFTP : VLCLocalNetworkServiceNetService
- @end
- NS_ASSUME_NONNULL_END
|