VLCHTTPUploaderController.h 466 B

1234567891011121314151617181920212223
  1. //
  2. // VLCHTTPUploaderViewController.h
  3. // VLC for iOS
  4. //
  5. // Created by Jean-Baptiste Kempf on 19/05/13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import <UIKit/UIKit.h>
  11. @class HTTPServer;
  12. @interface VLCHTTPUploaderController : NSObject
  13. @property (nonatomic, readonly) HTTPServer *httpServer;
  14. - (BOOL)changeHTTPServerState:(BOOL)state;
  15. - (NSString *)currentIPAddress;
  16. @end