MyHTTPConnection.h
上传用户:kc0325
上传日期:2020-06-20
资源大小:204k
文件大小:0k
- //
- // This class was created by Nonnus,
- // who graciously decided to share it with the CocoaHTTPServer community.
- //
- #import <Foundation/Foundation.h>
- #import "HTTPConnection.h"
- @interface MyHTTPConnection : HTTPConnection
- {
- int dataStartIndex;
- NSMutableArray* multipartData;
- BOOL postHeaderOK;
- }
- - (BOOL)isBrowseable:(NSString *)path;
- - (NSString *)createBrowseableIndex:(NSString *)path;
- - (BOOL)supportsPOST:(NSString *)path withSize:(UInt64)contentLength;
- @end