33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
|
|
/******************************************************************************
|
||
|
|
* Copyright (c) Huawei Technologies Co., Ltd. 2017-2019. All rights reserved.
|
||
|
|
* iSulad licensed under the Mulan PSL v1.
|
||
|
|
* You can use this software according to the terms and conditions of the Mulan PSL v1.
|
||
|
|
* You may obtain a copy of Mulan PSL v1 at:
|
||
|
|
* http://license.coscl.org.cn/MulanPSL
|
||
|
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR
|
||
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
|
||
|
|
* PURPOSE.
|
||
|
|
* See the Mulan PSL v1 for more details.
|
||
|
|
* Author: tanyifeng
|
||
|
|
* Create: 2017-11-22
|
||
|
|
* Description: provide container verify definition
|
||
|
|
******************************************************************************/
|
||
|
|
#ifndef __VERIFY_H
|
||
|
|
#define __VERIFY_H
|
||
|
|
|
||
|
|
#include "oci_runtime_spec.h"
|
||
|
|
#include "host_config.h"
|
||
|
|
|
||
|
|
int verify_container_settings(const oci_runtime_spec *container);
|
||
|
|
|
||
|
|
int verify_oci_hook(const oci_runtime_spec_hooks *h);
|
||
|
|
|
||
|
|
int verify_container_settings_start(const char *rootpath, const char *id);
|
||
|
|
|
||
|
|
int verify_host_config_settings(host_config *hostconfig, bool update);
|
||
|
|
|
||
|
|
int verify_health_check_parameter(const container_custom_config *custom_spec);
|
||
|
|
|
||
|
|
|
||
|
|
#endif /* __VERIFY_H */
|