config.c (501B)
1 /* 2 * Logswan 2.1.13 3 * Copyright (c) 2015-2022, Frederic Cambus 4 * https://www.logswan.org 5 * 6 * Created: 2015-05-31 7 * Last Updated: 2021-02-15 8 * 9 * Logswan is released under the BSD 2-Clause license. 10 * See LICENSE file for details. 11 * 12 * SPDX-License-Identifier: BSD-2-Clause 13 */ 14 15 const char *methods_names[] = { 16 "GET", 17 "POST", 18 "HEAD", 19 "OPTIONS", 20 "PUT", 21 "DELETE", 22 "TRACE", 23 "CONNECT", 24 "PATCH" 25 }; 26 27 const char *protocols_names[] = { 28 "HTTP/1.1", 29 "HTTP/1.0", 30 "HTTP/2.0", 31 "HTTP/3" 32 };