config.h (561B)
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-11-16 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 #ifndef CONFIG_H 16 #define CONFIG_H 17 18 #define VERSION "Logswan 2.1.13" 19 20 enum { 21 HLL_BITS = 20, 22 STATUS_CODE_MAX = 512, 23 24 CONTINENTS = 7, 25 COUNTRIES = 250, 26 METHODS = 9, 27 PROTOCOLS = 4 28 }; 29 30 extern char *methods_names[]; 31 extern char *protocols_names[]; 32 33 #endif /* CONFIG_H */