1 /* 2 * Copyright (C) 2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef FILLP_CONSTANT_H 17 #define FILLP_CONSTANT_H 18 19 #ifdef __cplusplus 20 extern "C" { 21 #endif /* __cplusplus */ 22 23 #define FILLP_RECV_PKT_LOSS_H_PERCISION 100 /* receive packet loss period */ 24 #define FILLP_RECV_PKT_LOSS_MAX 100 /* receive packet loss period */ 25 #define FILLP_MAX_INT_VALUE 0x7fffffff /* max value of integer */ 26 #define FILLP_PERSENT_NUM 100 27 28 #define FILLP_MIN_LLONG_VALUE 0x8000000000000000 /* min value of long long */ 29 #define FILLP_MAX_LLONG_VALUE 0x7FFFFFFFFFFFFFFF /* max value of long long */ 30 31 #ifdef __cplusplus 32 } 33 #endif /* __cplusplus */ 34 35 36 #endif /* FILLP_CONSTANT_H */ 37