2012-01-29 16:34:10 +01:00
|
|
|
/*
|
2013-07-12 17:19:03 +02:00
|
|
|
* nghttp2 - HTTP/2.0 C Library
|
2012-01-29 16:34:10 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-07-22 15:12:54 +02:00
|
|
|
#ifndef APP_HELPER_H
|
|
|
|
#define APP_HELPER_H
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
#include "nghttp2_config.h"
|
2012-07-27 15:11:13 +02:00
|
|
|
|
2012-01-29 16:34:10 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <cstdlib>
|
2012-01-31 14:04:51 +01:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <poll.h>
|
2012-08-20 21:03:55 +02:00
|
|
|
#include <map>
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
#include <nghttp2/nghttp2.h>
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
namespace nghttp2 {
|
2012-01-29 16:34:10 +01:00
|
|
|
|
|
|
|
void print_nv(char **nv);
|
|
|
|
|
2013-07-15 17:15:04 +02:00
|
|
|
void on_frame_recv_callback
|
|
|
|
(nghttp2_session *session, nghttp2_frame *frame, void *user_data);
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2013-07-15 17:15:04 +02:00
|
|
|
void on_invalid_frame_recv_callback
|
|
|
|
(nghttp2_session *session, nghttp2_frame *frame,
|
|
|
|
nghttp2_error_code error_code, void *user_data);
|
2012-05-09 16:27:44 +02:00
|
|
|
|
2013-07-15 17:15:04 +02:00
|
|
|
void on_frame_recv_parse_error_callback(nghttp2_session *session,
|
2013-07-12 17:19:03 +02:00
|
|
|
nghttp2_frame_type type,
|
2012-05-09 14:55:21 +02:00
|
|
|
const uint8_t *head,
|
|
|
|
size_t headlen,
|
|
|
|
const uint8_t *payload,
|
|
|
|
size_t payloadlen,
|
|
|
|
int error_code, void *user_data);
|
|
|
|
|
2013-07-15 17:15:04 +02:00
|
|
|
void on_unknown_frame_recv_callback(nghttp2_session *session,
|
2012-05-09 15:41:08 +02:00
|
|
|
const uint8_t *head,
|
|
|
|
size_t headlen,
|
|
|
|
const uint8_t *payload,
|
|
|
|
size_t payloadlen,
|
|
|
|
void *user_data);
|
|
|
|
|
2013-07-15 17:15:04 +02:00
|
|
|
void on_frame_send_callback
|
|
|
|
(nghttp2_session *session, nghttp2_frame *frame, void *user_data);
|
2012-02-07 17:50:58 +01:00
|
|
|
|
2012-01-29 16:34:10 +01:00
|
|
|
void on_data_recv_callback
|
2013-07-15 17:15:04 +02:00
|
|
|
(nghttp2_session *session, uint16_t length, uint8_t flags, int32_t stream_id,
|
2012-01-29 16:34:10 +01:00
|
|
|
void *user_data);
|
|
|
|
|
2012-02-07 17:50:58 +01:00
|
|
|
void on_data_send_callback
|
2013-07-15 17:15:04 +02:00
|
|
|
(nghttp2_session *session, uint16_t length, uint8_t flags, int32_t stream_id,
|
2012-01-29 16:34:10 +01:00
|
|
|
void *user_data);
|
|
|
|
|
2012-10-14 16:39:41 +02:00
|
|
|
// 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);
|
|
|
|
|
2012-01-30 16:46:46 +01:00
|
|
|
void reset_timer();
|
|
|
|
|
2012-01-31 14:04:51 +01:00
|
|
|
void get_timer(timeval *tv);
|
2012-01-30 16:46:46 +01:00
|
|
|
|
2013-01-27 09:16:13 +01:00
|
|
|
int get_time(timeval *tv);
|
|
|
|
|
2012-02-07 17:50:58 +01:00
|
|
|
void print_timer();
|
|
|
|
|
2013-01-27 08:27:17 +01:00
|
|
|
// 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);
|
|
|
|
|
2013-07-12 17:19:03 +02:00
|
|
|
} // namespace nghttp2
|
2012-01-29 16:34:10 +01:00
|
|
|
|
2013-07-22 15:12:54 +02:00
|
|
|
#endif // APP_HELPER_H
|