VLCHTTPUploaderController.h 726 B

12345678910111213141516171819202122232425262728293031323334
  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. #import "HTTPConnection.h"
  12. @class HTTPServer;
  13. @interface VLCHTTPUploaderController : NSObject
  14. @property (nonatomic, readonly) HTTPServer *httpServer;
  15. - (BOOL)changeHTTPServerState:(BOOL)state;
  16. - (NSString *)currentIPAddress;
  17. @end
  18. @class MultipartFormDataParser;
  19. @interface VLCHTTPConnection : HTTPConnection {
  20. MultipartFormDataParser* parser;
  21. NSFileHandle* storeFile;
  22. NSMutableArray* uploadedFiles;
  23. }
  24. @end