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) 2006-2007 Aconex. All Rights Reserved. * * 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_PMTIME_H #define PCP_PMTIME_H #include <sys/time.h> typedef enum pm_tctl_command { PM_TCTL_SET = (1<<0), // client -> server PM_TCTL_STEP = (1<<1), // server -> clients PM_TCTL_TZ = (1<<2), // server -> clients PM_TCTL_VCRMODE = (1<<3), // server -> clients PM_TCTL_VCRMODE_DRAG= (1<<4), // server -> clients PM_TCTL_GUISHOW = (1<<5), // client -> server PM_TCTL_GUIHIDE = (1<<6), // client -> server PM_TCTL_BOUNDS = (1<<7), // client -> server PM_TCTL_ACK = (1<<8), // client -> server (except handshake) } pm_tctl_command; typedef enum pm_tctl_state { PM_STATE_STOP = 0, PM_STATE_FORWARD = 1, PM_STATE_BACKWARD = 2, } pm_tctl_state; typedef enum { PM_MODE_STEP = 0, PM_MODE_NORMAL = 1, PM_MODE_FAST = 2, } pm_tctl_mode; typedef enum pm_tctl_source { PM_SOURCE_NONE = -1, PM_SOURCE_HOST = 0, PM_SOURCE_ARCHIVE = 1, } pm_tctl_source; #define PMTIME_MAGIC 0x54494D45 /* "TIME" */ typedef struct pmTime { unsigned int magic; unsigned int length; pm_tctl_command command; pm_tctl_source source; pm_tctl_state state; pm_tctl_mode mode; struct timeval delta; struct timeval position; struct timeval start; /* archive only */ struct timeval end; /* archive only */ char data[0]; /* arbitrary length info (e.g. $TZ) */ } pmTime; extern int pmTimeSendAck(int, struct timeval *); extern int pmTimeConnect(int, pmTime *); extern int pmTimeShowDialog(int, int); extern int pmTimeRecv(int, pmTime **); /* * Time state management API for simple clients */ typedef void (*pmTimeStateResume)(void); typedef void (*pmTimeStateRewind)(void); typedef void (*pmTimeStateExited)(void); typedef void (*pmTimeStateBoundary)(void); typedef void (*pmTimeStatePosition)(struct timeval); typedef void (*pmTimeStateInterval)(struct timeval); typedef void (*pmTimeStateStepped)(struct timeval); typedef void (*pmTimeStateNewZone)(char *, char *); typedef struct pmTimeControls { pmTimeStateResume resume; pmTimeStateRewind rewind; pmTimeStateExited exited; pmTimeStateBoundary boundary; pmTimeStatePosition position; pmTimeStateInterval interval; pmTimeStateStepped stepped; pmTimeStateNewZone newzone; struct timeval delta; int fd; int showgui; int context; int padding; } pmTimeControls; extern pmTime *pmTimeStateSetup(pmTimeControls *, int, int, struct timeval, struct timeval, struct timeval, struct timeval, char *, char *); extern void pmTimeStateAck(pmTimeControls *, pmTime *); extern void pmTimeStateMode(int, struct timeval, struct timeval *); extern int pmTimeStateVector(pmTimeControls *, pmTime *); extern void pmTimeStateBounds(pmTimeControls *, pmTime *); #endif /* PCP_PMTIME_H */