diff --git a/README.md b/README.md
index 4f3ace3f4..13bda0394 100755
--- a/README.md
+++ b/README.md
@@ -317,7 +317,7 @@ Supported operating systems and hardware:
22. Player, publisher(encoder), and demo pages(jquery+bootstrap).
23. Demo video meeting or chat(SRS+cherrypy+jquery+bootstrap).
24. [dev] Full documents in wiki, in chineses.
-25. [dev] Support RTMP(publish) library
+25. [dev] Support RTMP(play-publish) library: srs-librtmp
26. [plan] Support RTSP(RTP, SDP)
27. [plan] Support system utest
28. [plan] Support HLS cluster, use RTMP ATC to generate the TS
@@ -381,6 +381,7 @@ See also: [Performance Test Guide](https://github.com/winlinvip/simple-rtmp-serv
* nginx v1.5.0: 139524 lines
### History
+* v1.0, 2014-03-02, srs-librtmp, client publish/play library like librtmp.
* v1.0, 2014-03-01, modularity, extract core/kernel/os/protocol/drm/app/main module.
* v1.0, 2014-02-28, support arm build(SRS/ST), add ssl to 3rdparty package.
* v1.0, 2014-02-28, add wiki [BuildArm](https://github.com/winlinvip/simple-rtmp-server/wiki/Build), [FFMPEG](https://github.com/winlinvip/simple-rtmp-server/wiki/FFMPEG), [Reload](https://github.com/winlinvip/simple-rtmp-server/wiki/Reload)
diff --git a/trunk/src/libs/srs_librtmp.hpp b/trunk/src/libs/srs_librtmp.hpp
index 5a03d4de0..a439c6ca9 100644
--- a/trunk/src/libs/srs_librtmp.hpp
+++ b/trunk/src/libs/srs_librtmp.hpp
@@ -28,6 +28,14 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include
*/
+/**
+* srs-librtmp is a librtmp like library,
+* used to play/publish rtmp stream from/to rtmp server.
+* socket: use sync and block socket to connect/recv/send data with server.
+* depends: no need other libraries; depends on ssl if use srs_complex_handshake.
+* thread-safe: no
+*/
+
#ifdef __cplusplus
extern "C"{
#endif