config.hpp (522B)
1 /* 2 * StatZone 1.1.1 3 * Copyright (c) 2012-2022, Frederic Cambus 4 * https://www.statdns.com 5 * 6 * Created: 2012-02-13 7 * Last Updated: 2021-11-16 8 * 9 * StatZone 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_HPP 16 #define CONFIG_HPP 17 18 #define VERSION "StatZone 1.1.1" 19 20 struct results { 21 uint64_t processedLines; 22 uint64_t a; 23 uint64_t aaaa; 24 uint64_t ds; 25 uint64_t ns; 26 uint64_t domains; 27 uint64_t idn; 28 }; 29 30 #endif /* CONFIG_HPP */