Linux sh52.ich-4.com 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
Server IP : 198.143.147.58 & Your IP : 216.73.217.21
Domains :
Cant Read [ /etc/named.conf ]
User : actualbuzz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
pcp /
Delete
Unzip
Name
Size
Permission
Date
Action
archive.h
1.82
KB
-rw-r--r--
2025-09-22 09:40
builddefs
30.24
KB
-rw-r--r--
2025-09-22 09:40
buildrules
5.03
KB
-rw-r--r--
2025-09-22 09:40
config.h
20.09
KB
-rw-r--r--
2025-09-22 09:40
config32.h
877
B
-rw-r--r--
2025-09-22 09:40
config64.h
885
B
-rw-r--r--
2025-09-22 09:40
deprecated.h
5.29
KB
-rw-r--r--
2025-09-22 09:40
dict.h
7.28
KB
-rw-r--r--
2025-09-22 09:40
impl.h
942
B
-rw-r--r--
2025-09-22 09:40
import.h
4.29
KB
-rw-r--r--
2025-09-22 09:40
ini.h
5.22
KB
-rw-r--r--
2025-09-22 09:40
mmv_dev.h
4.5
KB
-rw-r--r--
2025-09-22 09:40
mmv_stats.h
7.12
KB
-rw-r--r--
2025-09-22 09:40
platform32.h
712
B
-rw-r--r--
2025-09-22 09:40
platform64.h
710
B
-rw-r--r--
2025-09-22 09:40
platform_defs.h
10.71
KB
-rw-r--r--
2025-09-22 09:40
pmafm.h
1.37
KB
-rw-r--r--
2025-09-22 09:40
pmapi.h
53.62
KB
-rw-r--r--
2025-09-22 09:40
pmda.h
31.48
KB
-rw-r--r--
2025-09-22 09:40
pmdaroot.h
3.81
KB
-rw-r--r--
2025-09-22 09:40
pmdbg.h
106
B
-rw-r--r--
2025-09-22 09:40
pmhttp.h
1.33
KB
-rw-r--r--
2025-09-22 09:40
pmjson.h
1.83
KB
-rw-r--r--
2025-09-22 09:40
pmtime.h
3.3
KB
-rw-r--r--
2025-09-22 09:40
pmwebapi.h
17.71
KB
-rw-r--r--
2025-09-22 09:40
sds.h
9
KB
-rw-r--r--
2025-09-22 09:40
trace.h
3.88
KB
-rw-r--r--
2025-09-22 09:40
trace_dev.h
2.63
KB
-rw-r--r--
2025-09-22 09:40
Save
Rename
/* * Copyright (C) 2001,2009 Silicon Graphics, Inc. All Rights Reserved. * Copyright (C) 2009 Aconex. All Rights Reserved. * Copyright (C) 2016 Red Hat. * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. */ #ifndef PCP_MMV_DEV_H #define PCP_MMV_DEV_H #define MMV_VERSION1 1 /* original on-disk format */ #define MMV_VERSION2 2 /* + mmv_disk_{metric2,instance2}_t */ #define MMV_VERSION3 3 /* + labels support */ #define MMV_VERSION 1 /* default, upgrading to v3 only if needed */ typedef enum mmv_toc_type { MMV_TOC_INDOMS = 1, /* mmv_disk_indom_t */ MMV_TOC_INSTANCES = 2, /* mmv_disk_{instance,instance2}_t */ MMV_TOC_METRICS = 3, /* mmv_disk_{metric,metric2}_t */ MMV_TOC_VALUES = 4, /* mmv_disk_value_t */ MMV_TOC_STRINGS = 5, /* mmv_disk_string_t */ MMV_TOC_LABELS = 6, /* mmv_disk_label_t */ } mmv_toc_type_t; /* The way the Table Of Contents is written into the file */ typedef struct mmv_disk_toc { mmv_toc_type_t type; /* What is it? */ __int32_t count; /* Number of entries */ __uint64_t offset; /* Offset of section from file start */ } mmv_disk_toc_t; typedef struct mmv_disk_indom { __uint32_t serial; /* Unique identifier */ __uint32_t count; /* Number of instances */ __uint64_t offset; /* Offset of first instance */ __uint64_t shorttext; /* Offset of short help text string */ __uint64_t helptext; /* Offset of long help text string */ } mmv_disk_indom_t; typedef struct mmv_disk_instance { __uint64_t indom; /* Offset into files indom section */ __uint32_t padding; /* zero filled, alignment bits */ __int32_t internal; /* Internal instance ID */ char external[MMV_NAMEMAX]; /* External instance ID */ } mmv_disk_instance_t; typedef struct mmv_disk_instance2 { __uint64_t indom; /* Offset into files indom section */ __uint32_t padding; /* zero filled, alignment bits */ __int32_t internal; /* Internal instance ID */ __uint64_t external; /* Offset of instance name string */ } mmv_disk_instance2_t; typedef struct mmv_disk_string { char payload[MMV_STRINGMAX]; /* NULL terminated string */ } mmv_disk_string_t; typedef struct mmv_disk_label { __uint32_t flags; /* PM_LABEL_[TYPE|OPTIONAL] */ __uint32_t identity; /* Indom, Cluster or item ID */ __int32_t internal; /* Instance ID or PM_IN_NULL */ char payload[MMV_LABELMAX]; } mmv_disk_label_t; typedef struct mmv_disk_metric { char name[MMV_NAMEMAX]; __uint32_t item; /* Unique identifier */ mmv_metric_type_t type; mmv_metric_sem_t semantics; pmUnits dimension; __int32_t indom; /* Instance domain number */ __uint32_t padding; /* zero filled, alignment bits */ __uint64_t shorttext; /* Offset of short help text string */ __uint64_t helptext; /* Offset of long help text string */ } mmv_disk_metric_t; typedef struct mmv_disk_metric2 { __uint64_t name; /* Offset of metric name string */ __uint32_t item; /* Unique identifier */ mmv_metric_type_t type; mmv_metric_sem_t semantics; pmUnits dimension; __int32_t indom; /* Instance domain number */ __uint32_t padding; /* zero filled, alignment bits */ __uint64_t shorttext; /* Offset of short help text string */ __uint64_t helptext; /* Offset of long help text string */ } mmv_disk_metric2_t; typedef struct mmv_disk_value { pmAtomValue value; /* Union of all possible value types */ __int64_t extra; /* INTEGRAL(starttime)/STRING(offset) */ __uint64_t metric; /* Offset into the metric section */ __uint64_t instance; /* Offset into the instance section */ } mmv_disk_value_t; typedef struct mmv_disk_header { char magic[4]; /* MMV\0 */ __int32_t version; /* version */ __uint64_t g1; /* Generation numbers */ __uint64_t g2; __int32_t tocs; /* Number of toc entries */ mmv_stats_flags_t flags; __int32_t process; /* client process identifier (flags) */ __int32_t cluster; /* preferred PMDA cluster identifier */ } mmv_disk_header_t; #endif /* PCP_MMV_DEV_H */