├── README ├── WebServer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── willonboy.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── willonboy.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── WebServer.xcscheme │ └── xcschememanagement.plist └── WebServer ├── DDASLLogger.h ├── DDASLLogger.m ├── DDData.h ├── DDData.m ├── DDFileLogger.h ├── DDFileLogger.m ├── DDLog.h ├── DDLog.m ├── DDNumber.h ├── DDNumber.m ├── DDRange.h ├── DDRange.m ├── DDTTYLogger.h ├── DDTTYLogger.m ├── GCDAsyncSocket.h ├── GCDAsyncSocket.m ├── HTTPAsyncFileResponse.h ├── HTTPAsyncFileResponse.m ├── HTTPAuthenticationRequest.h ├── HTTPAuthenticationRequest.m ├── HTTPConnection.h ├── HTTPConnection.m ├── HTTPDataResponse.h ├── HTTPDataResponse.m ├── HTTPDynamicFileResponse.h ├── HTTPDynamicFileResponse.m ├── HTTPFileResponse.h ├── HTTPFileResponse.m ├── HTTPLogging.h ├── HTTPMessage.h ├── HTTPMessage.m ├── HTTPRedirectResponse.h ├── HTTPRedirectResponse.m ├── HTTPResponse.h ├── HTTPServer.h ├── HTTPServer.m ├── MainViewController.h ├── MainViewController.m ├── WTZAppDelegate.h ├── WTZAppDelegate.m ├── WTZHTTPConnection.h ├── WTZHTTPConnection.m ├── WebServer-Info.plist ├── WebServer-Prefix.pch ├── WebSocket.h ├── WebSocket.m ├── en.lproj └── InfoPlist.strings ├── localhostAdresses.h ├── localhostAdresses.m ├── main.m └── web ├── .svn └── entries ├── file ├── .svn │ ├── entries │ └── props │ │ └── swfupload.swf.svn-work ├── api.js ├── default.css ├── fileprogress.js ├── handlers.js ├── jquery.min.js ├── swfupload.js ├── swfupload.queue.js └── swfupload.swf ├── image ├── .svn │ ├── entries │ └── props │ │ ├── TestImageNoText_65x29.png.svn-work │ │ ├── bg-interior-tile-drk.jpg.svn-work │ │ ├── cancelbutton.gif.svn-work │ │ ├── cloud.png.svn-work │ │ └── header-bg.jpg.svn-work ├── TestImageNoText_65x29.png ├── bg-interior-tile-drk.jpg ├── cancelbutton.gif ├── cloud.png └── header-bg.jpg └── index.html /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/README -------------------------------------------------------------------------------- /WebServer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WebServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WebServer.xcodeproj/project.xcworkspace/xcuserdata/willonboy.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer.xcodeproj/project.xcworkspace/xcuserdata/willonboy.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /WebServer.xcodeproj/xcuserdata/willonboy.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer.xcodeproj/xcuserdata/willonboy.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /WebServer.xcodeproj/xcuserdata/willonboy.xcuserdatad/xcschemes/WebServer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer.xcodeproj/xcuserdata/willonboy.xcuserdatad/xcschemes/WebServer.xcscheme -------------------------------------------------------------------------------- /WebServer.xcodeproj/xcuserdata/willonboy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer.xcodeproj/xcuserdata/willonboy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WebServer/DDASLLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDASLLogger.h -------------------------------------------------------------------------------- /WebServer/DDASLLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDASLLogger.m -------------------------------------------------------------------------------- /WebServer/DDData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDData.h -------------------------------------------------------------------------------- /WebServer/DDData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDData.m -------------------------------------------------------------------------------- /WebServer/DDFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDFileLogger.h -------------------------------------------------------------------------------- /WebServer/DDFileLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDFileLogger.m -------------------------------------------------------------------------------- /WebServer/DDLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDLog.h -------------------------------------------------------------------------------- /WebServer/DDLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDLog.m -------------------------------------------------------------------------------- /WebServer/DDNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDNumber.h -------------------------------------------------------------------------------- /WebServer/DDNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDNumber.m -------------------------------------------------------------------------------- /WebServer/DDRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDRange.h -------------------------------------------------------------------------------- /WebServer/DDRange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDRange.m -------------------------------------------------------------------------------- /WebServer/DDTTYLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDTTYLogger.h -------------------------------------------------------------------------------- /WebServer/DDTTYLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/DDTTYLogger.m -------------------------------------------------------------------------------- /WebServer/GCDAsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/GCDAsyncSocket.h -------------------------------------------------------------------------------- /WebServer/GCDAsyncSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/GCDAsyncSocket.m -------------------------------------------------------------------------------- /WebServer/HTTPAsyncFileResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPAsyncFileResponse.h -------------------------------------------------------------------------------- /WebServer/HTTPAsyncFileResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPAsyncFileResponse.m -------------------------------------------------------------------------------- /WebServer/HTTPAuthenticationRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPAuthenticationRequest.h -------------------------------------------------------------------------------- /WebServer/HTTPAuthenticationRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPAuthenticationRequest.m -------------------------------------------------------------------------------- /WebServer/HTTPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPConnection.h -------------------------------------------------------------------------------- /WebServer/HTTPConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPConnection.m -------------------------------------------------------------------------------- /WebServer/HTTPDataResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPDataResponse.h -------------------------------------------------------------------------------- /WebServer/HTTPDataResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPDataResponse.m -------------------------------------------------------------------------------- /WebServer/HTTPDynamicFileResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPDynamicFileResponse.h -------------------------------------------------------------------------------- /WebServer/HTTPDynamicFileResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPDynamicFileResponse.m -------------------------------------------------------------------------------- /WebServer/HTTPFileResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPFileResponse.h -------------------------------------------------------------------------------- /WebServer/HTTPFileResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPFileResponse.m -------------------------------------------------------------------------------- /WebServer/HTTPLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPLogging.h -------------------------------------------------------------------------------- /WebServer/HTTPMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPMessage.h -------------------------------------------------------------------------------- /WebServer/HTTPMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPMessage.m -------------------------------------------------------------------------------- /WebServer/HTTPRedirectResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPRedirectResponse.h -------------------------------------------------------------------------------- /WebServer/HTTPRedirectResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPRedirectResponse.m -------------------------------------------------------------------------------- /WebServer/HTTPResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPResponse.h -------------------------------------------------------------------------------- /WebServer/HTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPServer.h -------------------------------------------------------------------------------- /WebServer/HTTPServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/HTTPServer.m -------------------------------------------------------------------------------- /WebServer/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/MainViewController.h -------------------------------------------------------------------------------- /WebServer/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/MainViewController.m -------------------------------------------------------------------------------- /WebServer/WTZAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/WTZAppDelegate.h -------------------------------------------------------------------------------- /WebServer/WTZAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/WTZAppDelegate.m -------------------------------------------------------------------------------- /WebServer/WTZHTTPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/WTZHTTPConnection.h -------------------------------------------------------------------------------- /WebServer/WTZHTTPConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/WTZHTTPConnection.m -------------------------------------------------------------------------------- /WebServer/WebServer-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/WebServer-Info.plist -------------------------------------------------------------------------------- /WebServer/WebServer-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/WebServer-Prefix.pch -------------------------------------------------------------------------------- /WebServer/WebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/WebSocket.h -------------------------------------------------------------------------------- /WebServer/WebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/WebSocket.m -------------------------------------------------------------------------------- /WebServer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /WebServer/localhostAdresses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/localhostAdresses.h -------------------------------------------------------------------------------- /WebServer/localhostAdresses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/localhostAdresses.m -------------------------------------------------------------------------------- /WebServer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/main.m -------------------------------------------------------------------------------- /WebServer/web/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/.svn/entries -------------------------------------------------------------------------------- /WebServer/web/file/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/file/.svn/entries -------------------------------------------------------------------------------- /WebServer/web/file/.svn/props/swfupload.swf.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /WebServer/web/file/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/file/api.js -------------------------------------------------------------------------------- /WebServer/web/file/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/file/default.css -------------------------------------------------------------------------------- /WebServer/web/file/fileprogress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/file/fileprogress.js -------------------------------------------------------------------------------- /WebServer/web/file/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/file/handlers.js -------------------------------------------------------------------------------- /WebServer/web/file/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/file/jquery.min.js -------------------------------------------------------------------------------- /WebServer/web/file/swfupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/file/swfupload.js -------------------------------------------------------------------------------- /WebServer/web/file/swfupload.queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/file/swfupload.queue.js -------------------------------------------------------------------------------- /WebServer/web/file/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/file/swfupload.swf -------------------------------------------------------------------------------- /WebServer/web/image/.svn/entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/image/.svn/entries -------------------------------------------------------------------------------- /WebServer/web/image/.svn/props/TestImageNoText_65x29.png.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /WebServer/web/image/.svn/props/bg-interior-tile-drk.jpg.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /WebServer/web/image/.svn/props/cancelbutton.gif.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /WebServer/web/image/.svn/props/cloud.png.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /WebServer/web/image/.svn/props/header-bg.jpg.svn-work: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /WebServer/web/image/TestImageNoText_65x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/image/TestImageNoText_65x29.png -------------------------------------------------------------------------------- /WebServer/web/image/bg-interior-tile-drk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/image/bg-interior-tile-drk.jpg -------------------------------------------------------------------------------- /WebServer/web/image/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/image/cancelbutton.gif -------------------------------------------------------------------------------- /WebServer/web/image/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/image/cloud.png -------------------------------------------------------------------------------- /WebServer/web/image/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/image/header-bg.jpg -------------------------------------------------------------------------------- /WebServer/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willonboy/CocoaHTTPServer---multipart-form-data/HEAD/WebServer/web/index.html --------------------------------------------------------------------------------