VLCHTTPUploaderController.h 567 B

12345678910111213141516171819202122232425262728293031
  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. #import <UIKit/UIKit.h>
  9. #import "HTTPConnection.h"
  10. @class HTTPServer;
  11. @interface VLCHTTPUploaderController : NSObject {
  12. HTTPServer *httpServer;
  13. }
  14. -(BOOL)changeHTTPServerState:(BOOL)state;
  15. @end
  16. @class MultipartFormDataParser;
  17. @interface VLCHTTPConnection : HTTPConnection {
  18. MultipartFormDataParser* parser;
  19. NSFileHandle* storeFile;
  20. NSMutableArray* uploadedFiles;
  21. }
  22. @end