VLCLocalNetworkServiceBrowserFTP.h 1.0 KB

12345678910111213141516171819202122232425262728
  1. /*****************************************************************************
  2. * VLCLocalNetworkServiceBrowserFTP.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Tobias Conradi <videolan # tobias-conradi.de>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import "VLCLocalNetworkServiceBrowserNetService.h"
  13. #import "VLCLocalNetworkServiceNetService.h"
  14. NS_ASSUME_NONNULL_BEGIN
  15. @interface VLCLocalNetworkServiceBrowserFTP : VLCLocalNetworkServiceBrowserNetService
  16. - (instancetype)initWithName:(NSString *)name serviceType:(NSString *)serviceType domain:(NSString *)domain NS_UNAVAILABLE;
  17. - (instancetype)init NS_DESIGNATED_INITIALIZER;
  18. @end
  19. extern NSString *const VLCNetworkServerProtocolIdentifierFTP;
  20. @interface VLCLocalNetworkServiceFTP : VLCLocalNetworkServiceNetService
  21. @end
  22. NS_ASSUME_NONNULL_END