Updated README.rst

This commit is contained in:
Tatsuhiro Tsujikawa 2012-03-11 00:21:00 +09:00
parent 94c7e89742
commit bee873712a
1 changed files with 14 additions and 0 deletions

View File

@ -4,6 +4,14 @@ Spdylay - SPDY C Library
This is an experimental implementation of Google's SPDY protocol
version 2 and 3 in C.
This library provides SPDY framing layer implementation. It does not
perform any I/O operations. When the library needs them, it calls the
callback functions provided by the application. It also does not
include any event polling mechanism, so the application can freely
choose the way of handling events. This library code does not depend
on any particular SSL library (except for example programs which
depend on OpenSSL 1.0.1 or later).
The current status of development is in a beta stage now. As described
below, we can create SPDY client and server with the current Spdylay
API.
@ -20,6 +28,12 @@ used.::
$ ./configure
$ make
API
---
All public APIs are in *spdylay/spdylay.h*. All public API functions
as well as the callback function typedefs are documented.
Examples
--------