From 3add764bfa5db72b8a46dc721af67aea4dbbd305 Mon Sep 17 00:00:00 2001 From: Amir Zamani Date: Thu, 31 Mar 2016 23:11:25 +0430 Subject: [PATCH] update joyent/http-parser to nodejs/http-parser as suggested by [max](https://github.com/blochberger) --- README.md | 2 +- update-dependencies.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5f87aba..305b825 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ `QHttp` is a lightweight, asynchronous and fast HTTP library, containing both server and client side classes for managing connections, parsing and building HTTP requests and responses. this project is inspired by [nikhilm/qhttpserver](https://github.com/nikhilm/qhttpserver) effort to implement a Qt HTTP server. `QHttp` pushes the idea further by implementing client classes and better memory management, a lot more Node.js-like API, ... -* the fantastic [joyent/http-parser](https://github.com/joyent/http-parser) is the core parser of HTTP requests (server mode) and responses (client mode). +* the fantastic [nodejs/http-parser](https://github.com/nodejs/http-parser) is the core parser of HTTP requests (server mode) and responses (client mode). * By using `std::function` and `c++11 lambda`, the API is intentionally similar to the [Node.js' http module](http://nodejs.org/api/http.html). Asynchronous and non-blocking HTTP programming is quite easy with `QHttp`. have a look at [sample codes](#sample-codes). diff --git a/update-dependencies.sh b/update-dependencies.sh index b4fd382..d5b4b9e 100755 --- a/update-dependencies.sh +++ b/update-dependencies.sh @@ -5,12 +5,12 @@ echo "preparing the latest version of 3rd-party dependencies ...\n" mkdir -p 3rdparty cd 3rdparty -echo "--> joyent / http-parser" +echo "--> nodejs / http-parser" if [ -e http-parser ]; then cd http-parser git pull origin master else - git clone --depth=1 https://github.com/joyent/http-parser.git -b master + git clone https://github.com/nodejs/http-parser.git fi cd ..