VLCHTTPUploaderController.h 592 B

1234567891011121314151617181920212223242526272829303132
  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. @property (nonatomic, readonly) HTTPServer *httpServer;
  13. -(BOOL)changeHTTPServerState:(BOOL)state;
  14. @end
  15. @class MultipartFormDataParser;
  16. @interface VLCHTTPConnection : HTTPConnection {
  17. MultipartFormDataParser* parser;
  18. NSFileHandle* storeFile;
  19. NSMutableArray* uploadedFiles;
  20. }
  21. @end