aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPaul Hawke <paul.hawke@gmail.com>2013-09-02 17:23:13 -0500
committerPaul Hawke <paul.hawke@gmail.com>2013-09-02 17:23:13 -0500
commit8dd183554e56783ecf7cd6b8529cf807b9eb813c (patch)
tree7649fe63d9418d793543197c4c8026e97f72b65e /README.md
parent00e0b05dab77cd408f7efeedcf925d6ecb814215 (diff)
downloadnanohttpd-8dd183554e56783ecf7cd6b8529cf807b9eb813c.tar.gz
Deprecated the serve() method taking multiple parameters, as the one taking a session now offers more functionality. Updated the readme to reflect basic cookie support now added. @psh
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 3c61fa6..8dce0c9 100644
--- a/README.md
+++ b/README.md
@@ -15,6 +15,8 @@ for a release, making sure it works on all platforms.
* 2 "flavors" - one at "current" standards and one strictly Java 1.1 compatible.
* Released as open source, free software, under a Modified BSD licence.
* No fixed config files, logging, authorization etc. (Implement by yourself if you need them.)
+* Experimental support for SSL (see the 'ssl-support' branch in git)
+* Basic support for cookies
* Supports parameter parsing of GET and POST methods.
* Rudimentary PUT support (added in 1.25).
* Support for HEAD and DELETE requests.
@@ -66,7 +68,7 @@ Firstly take a look at the "samples" sub-module. The sample code illustrates us
Secondly, you can run the standalone *NanoHttpd Webserver*.
-Or, create your own class that extends `NanoHTTPD` and overrides the `serve()` method. For example:
+Or, create your own class that extends `NanoHTTPD` and overrides one of the two flavors of the `serve()` method. For example:
```java
public class DebugServer extends NanoHTTPD {