12c593315Sopenharmony_ci/* 22c593315Sopenharmony_ci * nghttp2 - HTTP/2 C Library 32c593315Sopenharmony_ci * 42c593315Sopenharmony_ci * Copyright (c) 2012 Tatsuhiro Tsujikawa 52c593315Sopenharmony_ci * 62c593315Sopenharmony_ci * Permission is hereby granted, free of charge, to any person obtaining 72c593315Sopenharmony_ci * a copy of this software and associated documentation files (the 82c593315Sopenharmony_ci * "Software"), to deal in the Software without restriction, including 92c593315Sopenharmony_ci * without limitation the rights to use, copy, modify, merge, publish, 102c593315Sopenharmony_ci * distribute, sublicense, and/or sell copies of the Software, and to 112c593315Sopenharmony_ci * permit persons to whom the Software is furnished to do so, subject to 122c593315Sopenharmony_ci * the following conditions: 132c593315Sopenharmony_ci * 142c593315Sopenharmony_ci * The above copyright notice and this permission notice shall be 152c593315Sopenharmony_ci * included in all copies or substantial portions of the Software. 162c593315Sopenharmony_ci * 172c593315Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 182c593315Sopenharmony_ci * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 192c593315Sopenharmony_ci * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 202c593315Sopenharmony_ci * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 212c593315Sopenharmony_ci * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 222c593315Sopenharmony_ci * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 232c593315Sopenharmony_ci * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 242c593315Sopenharmony_ci */ 252c593315Sopenharmony_ci#ifndef SHRPX_H 262c593315Sopenharmony_ci#define SHRPX_H 272c593315Sopenharmony_ci 282c593315Sopenharmony_ci#ifdef HAVE_CONFIG_H 292c593315Sopenharmony_ci# include <config.h> 302c593315Sopenharmony_ci#endif // HAVE_CONFIG_H 312c593315Sopenharmony_ci 322c593315Sopenharmony_ci#include <sys/types.h> 332c593315Sopenharmony_ci#ifdef HAVE_SYS_SOCKET_H 342c593315Sopenharmony_ci# include <sys/socket.h> 352c593315Sopenharmony_ci#endif // HAVE_SYS_SOCKET_H 362c593315Sopenharmony_ci 372c593315Sopenharmony_ci#include <cassert> 382c593315Sopenharmony_ci 392c593315Sopenharmony_ci#ifndef HAVE__EXIT 402c593315Sopenharmony_ci# define nghttp2_Exit(status) _exit(status) 412c593315Sopenharmony_ci#else // HAVE__EXIT 422c593315Sopenharmony_ci# define nghttp2_Exit(status) _Exit(status) 432c593315Sopenharmony_ci#endif // HAVE__EXIT 442c593315Sopenharmony_ci 452c593315Sopenharmony_ci#define DIE() nghttp2_Exit(EXIT_FAILURE) 462c593315Sopenharmony_ci 472c593315Sopenharmony_ci#if defined(HAVE_DECL_INITGROUPS) && !HAVE_DECL_INITGROUPS 482c593315Sopenharmony_ciinline int initgroups(const char *user, gid_t group) { return 0; } 492c593315Sopenharmony_ci#endif // defined(HAVE_DECL_INITGROUPS) && !HAVE_DECL_INITGROUPS 502c593315Sopenharmony_ci 512c593315Sopenharmony_ci#ifndef HAVE_BPF_STATS_TYPE 522c593315Sopenharmony_ci/* Newer kernel should have this defined in linux/bpf.h */ 532c593315Sopenharmony_cienum bpf_stats_type { 542c593315Sopenharmony_ci BPF_STATS_RUN_TIME = 0, 552c593315Sopenharmony_ci}; 562c593315Sopenharmony_ci#endif // !HAVE_BPF_STATS_TYPE 572c593315Sopenharmony_ci 582c593315Sopenharmony_ci#endif // SHRPX_H 59