/*
 * Copyright (c) 2022 Huawei Device Co., Ltd.
 * 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
 *
 *     http://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 FILLP_CONSTANT_H
#define FILLP_CONSTANT_H

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

#define FILLP_RECV_PKT_LOSS_H_PERCISION 100 /* receive packet loss period */
#define FILLP_RECV_PKT_LOSS_MAX 100         /* receive packet loss period */
#define FILLP_MAX_INT_VALUE 0x7fffffff      /* max value of integer */
#define FILLP_PERSENT_NUM 100

#define FILLP_MIN_LLONG_VALUE 0x8000000000000000 /* min value of long long */
#define FILLP_MAX_LLONG_VALUE 0x7FFFFFFFFFFFFFFF /* max value of long long */

#ifdef __cplusplus
}
#endif /* __cplusplus */


#endif /* FILLP_CONSTANT_H */