Linux vps-4302913.novaexata.com.br 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
Apache
: 162.214.88.42 | : 216.73.216.156
166 Domain
7.3.33
wwnova
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
src /
debug /
php-5.6.40 /
sapi /
fpm /
fpm /
[ HOME SHELL ]
Name
Size
Permission
Action
events
[ DIR ]
drwxr-xr-x
fastcgi.c
25.94
KB
-rw-r--r--
fastcgi.h
4.47
KB
-rw-r--r--
fpm.c
2.84
KB
-rw-r--r--
fpm.h
1.13
KB
-rw-r--r--
fpm_arrays.h
1.82
KB
-rw-r--r--
fpm_atomic.h
3.95
KB
-rw-r--r--
fpm_children.c
10.99
KB
-rw-r--r--
fpm_children.h
873
B
-rw-r--r--
fpm_cleanup.c
849
B
-rw-r--r--
fpm_cleanup.h
519
B
-rw-r--r--
fpm_clock.c
2.23
KB
-rw-r--r--
fpm_clock.h
239
B
-rw-r--r--
fpm_conf.c
49.14
KB
-rw-r--r--
fpm_conf.h
2.43
KB
-rw-r--r--
fpm_env.c
5.39
KB
-rw-r--r--
fpm_env.h
491
B
-rw-r--r--
fpm_events.c
11.67
KB
-rw-r--r--
fpm_events.h
1.59
KB
-rw-r--r--
fpm_log.c
11.53
KB
-rw-r--r--
fpm_log.h
300
B
-rw-r--r--
fpm_main.c
62.74
KB
-rw-r--r--
fpm_php.c
6.42
KB
-rw-r--r--
fpm_php.h
1.23
KB
-rw-r--r--
fpm_php_trace.c
3.49
KB
-rw-r--r--
fpm_process_ctl.c
13.65
KB
-rw-r--r--
fpm_process_ctl.h
1.23
KB
-rw-r--r--
fpm_request.c
8.01
KB
-rw-r--r--
fpm_request.h
1.18
KB
-rw-r--r--
fpm_scoreboard.c
7.84
KB
-rw-r--r--
fpm_scoreboard.h
2.5
KB
-rw-r--r--
fpm_shm.c
1.23
KB
-rw-r--r--
fpm_shm.h
263
B
-rw-r--r--
fpm_signals.c
4.72
KB
-rw-r--r--
fpm_signals.h
315
B
-rw-r--r--
fpm_sockets.c
11.39
KB
-rw-r--r--
fpm_sockets.h
1006
B
-rw-r--r--
fpm_status.c
13.7
KB
-rw-r--r--
fpm_status.h
1.03
KB
-rw-r--r--
fpm_stdio.c
7.36
KB
-rw-r--r--
fpm_stdio.h
569
B
-rw-r--r--
fpm_str.h
483
B
-rw-r--r--
fpm_systemd.c
3.11
KB
-rw-r--r--
fpm_systemd.h
275
B
-rw-r--r--
fpm_trace.c
641
B
-rw-r--r--
fpm_trace.h
378
B
-rw-r--r--
fpm_trace_ptrace.c
1.6
KB
-rw-r--r--
fpm_unix.c
19.23
KB
-rw-r--r--
fpm_unix.h
518
B
-rw-r--r--
fpm_worker_pool.c
1.57
KB
-rw-r--r--
fpm_worker_pool.h
1.23
KB
-rw-r--r--
zlog.c
4.47
KB
-rw-r--r--
zlog.h
978
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fpm_arrays.h
/* $Id: fpm_arrays.h,v 1.2 2008/05/24 17:38:47 anight Exp $ */ /* (c) 2007,2008 Andrei Nigmatulin */ #ifndef FPM_ARRAYS_H #define FPM_ARRAYS_H 1 #include <stdlib.h> #include <string.h> struct fpm_array_s { void *data; size_t sz; size_t used; size_t allocated; }; static inline struct fpm_array_s *fpm_array_init(struct fpm_array_s *a, unsigned int sz, unsigned int initial_num) /* {{{ */ { void *allocated = 0; if (!a) { a = malloc(sizeof(struct fpm_array_s)); if (!a) { return 0; } allocated = a; } a->sz = sz; a->data = calloc(sz, initial_num); if (!a->data) { free(allocated); return 0; } a->allocated = initial_num; a->used = 0; return a; } /* }}} */ static inline void *fpm_array_item(struct fpm_array_s *a, unsigned int n) /* {{{ */ { char *ret; ret = (char *) a->data + a->sz * n; return ret; } /* }}} */ static inline void *fpm_array_item_last(struct fpm_array_s *a) /* {{{ */ { return fpm_array_item(a, a->used - 1); } /* }}} */ static inline int fpm_array_item_remove(struct fpm_array_s *a, unsigned int n) /* {{{ */ { int ret = -1; if (n < a->used - 1) { void *last = fpm_array_item(a, a->used - 1); void *to_remove = fpm_array_item(a, n); memcpy(to_remove, last, a->sz); ret = n; } --a->used; return ret; } /* }}} */ static inline void *fpm_array_push(struct fpm_array_s *a) /* {{{ */ { void *ret; if (a->used == a->allocated) { size_t new_allocated = a->allocated ? a->allocated * 2 : 20; void *new_ptr = realloc(a->data, a->sz * new_allocated); if (!new_ptr) { return 0; } a->data = new_ptr; a->allocated = new_allocated; } ret = fpm_array_item(a, a->used); ++a->used; return ret; } /* }}} */ static inline void fpm_array_free(struct fpm_array_s *a) /* {{{ */ { free(a->data); a->data = 0; a->sz = 0; a->used = a->allocated = 0; } /* }}} */ #endif
Close