blob: f924390f700971d31d5fc94b7743b5446effe4c7 [file]
// Copyright 2015 The BoringSSL Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef OPENSSL_HEADER_CRYPTO_CONF_INTERNAL_H
#define OPENSSL_HEADER_CRYPTO_CONF_INTERNAL_H
#include <openssl/base.h>
#include "../lhash/internal.h"
BSSL_NAMESPACE_BEGIN
typedef struct conf_section_st CONF_SECTION;
DEFINE_LHASH_OF(CONF_SECTION)
DEFINE_LHASH_OF(CONF_VALUE)
BSSL_NAMESPACE_END
struct conf_st {
LHASH_OF(CONF_VALUE) *values;
LHASH_OF(CONF_SECTION) *sections;
};
BSSL_NAMESPACE_BEGIN
// CONF_VALUE_new returns a freshly allocated and zeroed `CONF_VALUE`.
CONF_VALUE *CONF_VALUE_new();
// CONF_parse_list takes a list separated by 'sep' and calls `list_cb` giving
// the start and length of each member, optionally stripping leading and
// trailing whitespace. This can be used to parse comma separated lists for
// example. If `list_cb` returns <= 0, then the iteration is halted and that
// value is returned immediately. Otherwise it returns one. Note that `list_cb`
// may be called on an empty member.
OPENSSL_EXPORT int CONF_parse_list(
const char *list, char sep, int remove_whitespace,
int (*list_cb)(const char *elem, size_t len, void *usr), void *arg);
BSSL_NAMESPACE_END
#endif // OPENSSL_HEADER_CRYPTO_CONF_INTERNAL_H