/* * nghttp2 - HTTP/2.0 C Library * * Copyright (c) 2012 Tatsuhiro Tsujikawa * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef APP_HELPER_H #define APP_HELPER_H #include "nghttp2_config.h" #include #include #include #include #include #include namespace nghttp2 { void print_nv(char **nv); int on_frame_recv_callback (nghttp2_session *session, nghttp2_frame *frame, void *user_data); int on_invalid_frame_recv_callback (nghttp2_session *session, nghttp2_frame *frame, nghttp2_error_code error_code, void *user_data); int on_frame_recv_parse_error_callback(nghttp2_session *session, nghttp2_frame_type type, const uint8_t *head, size_t headlen, const uint8_t *payload, size_t payloadlen, int error_code, void *user_data); int on_unknown_frame_recv_callback(nghttp2_session *session, const uint8_t *head, size_t headlen, const uint8_t *payload, size_t payloadlen, void *user_data); int on_frame_send_callback (nghttp2_session *session, nghttp2_frame *frame, void *user_data); int on_data_recv_callback (nghttp2_session *session, uint16_t length, uint8_t flags, int32_t stream_id, void *user_data); int on_data_send_callback (nghttp2_session *session, uint16_t length, uint8_t flags, int32_t stream_id, void *user_data); // Returns difference between |a| and |b| in milliseconds, assuming // |a| is more recent than |b|. int64_t time_delta(const timeval& a, const timeval& b); void reset_timer(); void get_timer(timeval *tv); int get_time(timeval *tv); void print_timer(); // Setting true will print characters with ANSI color escape codes // when printing SPDY frames. This function changes a static variable. void set_color_output(bool f); } // namespace nghttp2 #endif // APP_HELPER_H