/***************************************************************************** * VLCLocalNetworkServiceBrowserFTP.m * VLC for iOS ***************************************************************************** * Copyright (c) 2015 VideoLAN. All rights reserved. * $Id$ * * Authors: Tobias Conradi * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import "VLCLocalNetworkServiceBrowserFTP.h" #import "VLCNetworkServerLoginInformation.h" @implementation VLCLocalNetworkServiceBrowserFTP - (instancetype)init { #if TARGET_OS_TV NSString *name = NSLocalizedString(@"FTP_SHORT",nil); #else NSString *name = NSLocalizedString(@"FTP_LONG",nil); #endif return [super initWithName:name serviceType:@"_ftp._tcp." domain:@""]; } - (VLCLocalNetworkServiceNetService *)localServiceForNetService:(NSNetService *)netService { return [[VLCLocalNetworkServiceFTP alloc] initWithNetService:netService serviceName:self.self.name]; } @end NSString *const VLCNetworkServerProtocolIdentifierFTP = @"ftp"; @implementation VLCLocalNetworkServiceFTP - (UIImage *)icon { return [UIImage imageNamed:@"serverIcon"]; } - (nullable id)loginInformation { VLCNetworkServerLoginInformation *login = [[VLCNetworkServerLoginInformation alloc] init]; login.address = self.netService.hostName; login.port = [NSNumber numberWithInteger:self.netService.port]; login.protocolIdentifier = VLCNetworkServerProtocolIdentifierFTP; return login; } @end