VLCHTTPUploaderController.h 809 B

123456789101112131415161718192021222324252627
  1. /*****************************************************************************
  2. * VLCHTTPUploaderViewController.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2013 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Jean-Baptiste Kempf <jb # videolan.org>
  9. * Gleb Pinigin <gpinigin # gmail.com>
  10. * Felix Paul Kühne <fkuehne # videolan.org>
  11. *
  12. * Refer to the COPYING file of the official project for license.
  13. *****************************************************************************/
  14. #import <UIKit/UIKit.h>
  15. @class HTTPServer;
  16. @interface VLCHTTPUploaderController : NSObject
  17. @property (nonatomic, readonly) HTTPServer *httpServer;
  18. - (BOOL)changeHTTPServerState:(BOOL)state;
  19. - (NSString *)currentIPAddress;
  20. @end