Blame modules/md/md_version.h

Packit 90a5c9
/* Licensed to the Apache Software Foundation (ASF) under one or more
Packit 90a5c9
 * contributor license agreements.  See the NOTICE file distributed with
Packit 90a5c9
 * this work for additional information regarding copyright ownership.
Packit 90a5c9
 * The ASF licenses this file to You under the Apache License, Version 2.0
Packit 90a5c9
 * (the "License"); you may not use this file except in compliance with
Packit 90a5c9
 * the License.  You may obtain a copy of the License at
Packit 90a5c9
 *
Packit 90a5c9
 *     http://www.apache.org/licenses/LICENSE-2.0
Packit 90a5c9
 *
Packit 90a5c9
 * Unless required by applicable law or agreed to in writing, software
Packit 90a5c9
 * distributed under the License is distributed on an "AS IS" BASIS,
Packit 90a5c9
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Packit 90a5c9
 * See the License for the specific language governing permissions and
Packit 90a5c9
 * limitations under the License.
Packit 90a5c9
 */
Packit 90a5c9
Packit 90a5c9
#ifndef mod_md_md_version_h
Packit 90a5c9
#define mod_md_md_version_h
Packit 90a5c9
Packit 90a5c9
#undef PACKAGE_VERSION
Packit 90a5c9
#undef PACKAGE_TARNAME
Packit 90a5c9
#undef PACKAGE_STRING
Packit 90a5c9
#undef PACKAGE_NAME
Packit 90a5c9
#undef PACKAGE_BUGREPORT
Packit 90a5c9
Packit 90a5c9
/**
Packit 90a5c9
 * @macro
Packit 90a5c9
 * Version number of the md module as c string
Packit 90a5c9
 */
Packit 90a5c9
#define MOD_MD_VERSION "1.1.16"
Packit 90a5c9
Packit 90a5c9
/**
Packit 90a5c9
 * @macro
Packit 90a5c9
 * Numerical representation of the version number of the md module
Packit 90a5c9
 * release. This is a 24 bit number with 8 bits for major number, 8 bits
Packit 90a5c9
 * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
Packit 90a5c9
 */
Packit 90a5c9
#define MOD_MD_VERSION_NUM 0x010110
Packit 90a5c9
Packit 90a5c9
#define MD_ACME_DEF_URL    "https://acme-v01.api.letsencrypt.org/directory"
Packit 90a5c9
Packit 90a5c9
#endif /* mod_md_md_version_h */