Rename nghttp2_ssl as app_helper

This commit is contained in:
Tatsuhiro Tsujikawa 2013-07-22 22:12:54 +09:00
parent ec79d70bd0
commit 42ff5b5c04
6 changed files with 9 additions and 11 deletions

View File

@ -44,7 +44,7 @@
#include <event2/bufferevent_ssl.h> #include <event2/bufferevent_ssl.h>
#include <event2/listener.h> #include <event2/listener.h>
#include "nghttp2_ssl.h" #include "app_helper.h"
#include "util.h" #include "util.h"
#include "EventPoll.h" #include "EventPoll.h"

View File

@ -41,8 +41,8 @@ if HAVE_LIBEVENT_OPENSSL
# bin_PROGRAMS += shrpx # bin_PROGRAMS += shrpx
endif # HAVE_LIBEVENT_OPENSSL endif # HAVE_LIBEVENT_OPENSSL
HELPER_OBJECTS = util.cc timegm.c nghttp2_ssl.cc HELPER_OBJECTS = util.cc timegm.c app_helper.cc
HELPER_HFILES = util.h timegm.h nghttp2_ssl.h nghttp2_config.h HELPER_HFILES = util.h timegm.h app_helper.h nghttp2_config.h
EVENT_OBJECTS = EVENT_OBJECTS =
EVENT_HFILES = EventPoll.h EventPollEvent.h EVENT_HFILES = EventPoll.h EventPollEvent.h

View File

@ -43,7 +43,7 @@
#include <iomanip> #include <iomanip>
#include <fstream> #include <fstream>
#include "nghttp2_ssl.h" #include "app_helper.h"
#include "util.h" #include "util.h"
namespace nghttp2 { namespace nghttp2 {

View File

@ -22,8 +22,8 @@
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/ */
#ifndef NGHTTP2_SSL_H #ifndef APP_HELPER_H
#define NGHTTP2_SSL_H #define APP_HELPER_H
#include "nghttp2_config.h" #include "nghttp2_config.h"
@ -33,8 +33,6 @@
#include <poll.h> #include <poll.h>
#include <map> #include <map>
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <nghttp2/nghttp2.h> #include <nghttp2/nghttp2.h>
namespace nghttp2 { namespace nghttp2 {
@ -92,4 +90,4 @@ void set_color_output(bool f);
} // namespace nghttp2 } // namespace nghttp2
#endif // NGHTTP2_SSL_H #endif // APP_HELPER_H

View File

@ -62,7 +62,7 @@
#include "http-parser/http_parser.h" #include "http-parser/http_parser.h"
#include "nghttp2_ssl.h" #include "app_helper.h"
#include "HtmlParser.h" #include "HtmlParser.h"
#include "util.h" #include "util.h"

View File

@ -37,7 +37,7 @@
#include <openssl/err.h> #include <openssl/err.h>
#include <nghttp2/nghttp2.h> #include <nghttp2/nghttp2.h>
#include "nghttp2_ssl.h" #include "app_helper.h"
#include "HttpServer.h" #include "HttpServer.h"
namespace nghttp2 { namespace nghttp2 {