config.c (457B)
1 /* 2 * Logswan 2.1.10 3 * Copyright (c) 2015-2021, 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 13 const char *methods_names[] = { 14 "GET", 15 "POST", 16 "HEAD", 17 "OPTIONS", 18 "PUT", 19 "DELETE", 20 "TRACE", 21 "CONNECT", 22 "PATCH" 23 }; 24 25 const char *protocols_names[] = { 26 "HTTP/1.1", 27 "HTTP/1.0", 28 "HTTP/2.0", 29 "HTTP/3" 30 };