MyHTTPConnection.h
上传用户:kc0325
上传日期:2020-06-20
资源大小:204k
文件大小:0k
源码类别:

iPhone

开发平台:

Objective-C

  1. //
  2. //  This class was created by Nonnus,
  3. //  who graciously decided to share it with the CocoaHTTPServer community.
  4. //
  5. #import <Foundation/Foundation.h>
  6. #import "HTTPConnection.h"
  7. @interface MyHTTPConnection : HTTPConnection
  8. {
  9. int dataStartIndex;
  10. NSMutableArray* multipartData;
  11. BOOL postHeaderOK;
  12. }
  13. - (BOOL)isBrowseable:(NSString *)path;
  14. - (NSString *)createBrowseableIndex:(NSString *)path;
  15. - (BOOL)supportsPOST:(NSString *)path withSize:(UInt64)contentLength;
  16. @end