123456789101112131415161718192021222324252627282930313233 |
- /*****************************************************************************
- * VLCHTTPUploaderViewController.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Jean-Baptiste Kempf <jb # videolan.org>
- * Gleb Pinigin <gpinigin # gmail.com>
- * Felix Paul Kühne <fkuehne # videolan.org>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import <UIKit/UIKit.h>
- @class HTTPServer;
- @interface VLCHTTPUploaderController : NSObject
- + (instancetype)sharedInstance;
- @property (nonatomic, readonly) HTTPServer *httpServer;
- - (BOOL)changeHTTPServerState:(BOOL)state;
- - (NSString *)currentIPAddress;
- - (NSString *)hostname;
- - (void)moveFileFrom:(NSString *)filepath;
- - (void)cleanCache;
- @end
|