https://github.com/bmeurer/cocoahttpserver
This is my fork of the CocoaHTTPServer. CocoaHTTPServer is a small, lightweight, embeddable HTTP server for Mac OS X and iOS applications.
https://github.com/bmeurer/cocoahttpserver
Last synced: about 1 year ago
JSON representation
This is my fork of the CocoaHTTPServer. CocoaHTTPServer is a small, lightweight, embeddable HTTP server for Mac OS X and iOS applications.
- Host: GitHub
- URL: https://github.com/bmeurer/cocoahttpserver
- Owner: bmeurer
- License: other
- Created: 2011-08-05T07:02:55.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2011-09-22T07:39:06.000Z (almost 15 years ago)
- Last Synced: 2025-03-24T15:21:39.611Z (over 1 year ago)
- Language: Objective-C
- Homepage: http://code.google.com/p/cocoahttpserver
- Size: 2.7 MB
- Stars: 15
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE.txt
Awesome Lists containing this project
README
## About
This is my fork of the [CocoaHTTPServer](http://code.google.com/p/cocoahttpserver/) project, which adds a Xcode project file with targets suitable for embedding into other Xcode projects, and fixes several known bugs.
## CocoaHTTPServer
[CocoaHTTPServer](http://code.google.com/p/cocoahttpserver/) is a small, lightweight, embeddable HTTP server for Mac OS X or iOS applications.
Sometimes developers need an embedded HTTP server in their app. Perhaps it's a server application with remote monitoring. Or perhaps it's a desktop application using HTTP for the communication backend. Or perhaps it's an iOS app providing over-the-air access to documents. Whatever your reason, CocoaHTTPServer can get the job done. It provides:
- Built in support for bonjour broadcasting
- IPv4 and IPv6 support
- Asynchronous networking using GCD and standard sockets
- Password protection support
- SSL/TLS encryption support
- Extremely FAST and memory efficient
- Extremely scalable (built entirely upon GCD)
- Heavily commented code
- Very easily extensible
- WebDAV is supported too!
## License
CocoaHTTPServer is licensed under the [Simplified BSD License](http://en.wikipedia.org/wiki/BSD_license). See the [LICENSE.txt](http://github.com/bmeurer/cocoahttpserver/raw/master/LICENSE.txt) file for details.