1 /** @file 2 3 @section license License 4 5 Licensed to the Apache Software Foundation (ASF) under one 6 or more contributor license agreements. See the NOTICE file 7 distributed with this work for additional information 8 regarding copyright ownership. The ASF licenses this file 9 to you under the Apache License, Version 2.0 (the 10 "License"); you may not use this file except in compliance 11 with the License. You may obtain a copy of the License at 12 13 http://www.apache.org/licenses/LICENSE-2.0 14 15 Unless required by applicable law or agreed to in writing, software 16 distributed under the License is distributed on an "AS IS" BASIS, 17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 18 See the License for the specific language governing permissions and 19 limitations under the License. 20 */ 21 22 #pragma once 23 24 namespace ts 25 { 26 namespace filename 27 { 28 constexpr const char *STORAGE = "storage.config"; 29 constexpr const char *RECORDS = "records.config"; 30 constexpr const char *VOLUME = "volume.config"; 31 constexpr const char *PLUGIN = "plugin.config"; 32 33 // These still need to have their corresponding records.config settings removed. 34 constexpr const char *LOGGING = "logging.yaml"; 35 constexpr const char *CACHE = "cache.config"; 36 constexpr const char *IP_ALLOW = "ip_allow.yaml"; 37 constexpr const char *HOSTING = "hosting.config"; 38 constexpr const char *SOCKS = "socks.config"; 39 constexpr const char *PARENT = "parent.config"; 40 constexpr const char *REMAP = "remap.config"; 41 constexpr const char *SSL_MULTICERT = "ssl_multicert.config"; 42 constexpr const char *SPLITDNS = "splitdns.config"; 43 constexpr const char *SNI = "sni.yaml"; 44 45 /////////////////////////////////////////////////////////////////// 46 // Various other file names 47 constexpr const char *RECORDS_STATS = "records.snap"; 48 49 } // namespace filename 50 } // namespace ts 51