forked from videolan/vlc-ios
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVLCHTTPUploaderController.h
36 lines (28 loc) · 1.07 KB
/
VLCHTTPUploaderController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*****************************************************************************
* VLCHTTPUploaderController.h
* VLC for iOS
*****************************************************************************
* Copyright (c) 2013-2015 VideoLAN. All rights reserved.
* $Id$
*
* Authors: Jean-Baptiste Kempf <jb # videolan.org>
* Gleb Pinigin <gpinigin # gmail.com>
* Felix Paul Kühne <fkuehne # videolan.org>
* Carola Nitz <caro # videolan.org>
*
* Refer to the COPYING file of the official project for license.
*****************************************************************************/
#import <UIKit/UIKit.h>
@class MediaLibraryService;
@interface VLCHTTPUploaderController : NSObject
+ (instancetype)sharedInstance;
@property (nonatomic, readonly) BOOL isReachable;
@property (nonatomic, readwrite) MediaLibraryService *medialibrary;
- (BOOL)changeHTTPServerState:(BOOL)state;
- (NSString *)httpStatus;
- (BOOL)isServerRunning;
- (NSString *)hostname;
- (NSString *)hostnamePort;
- (void)moveFileFrom:(NSString *)filepath;
- (void)cleanCache;
@end