!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-headers-2.6.24-28/include/linux/nfsd/   drwxr-xr-x
Free 1.06 GB of 97.11 GB (1.09%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     cache.h (1.54 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * include/linux/nfsd/cache.h
 *
 * Request reply cache. This was heavily inspired by the
 * implementation in 4.3BSD/4.4BSD.
 *
 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
 */

#ifndef NFSCACHE_H
#define NFSCACHE_H

#ifdef __KERNEL__
#include <linux/in.h>
#include <linux/uio.h>

/*
 * Representation of a reply cache entry. The first two members *must*
 * be hash_next and hash_prev.
 */
struct svc_cacherep {
    struct hlist_node    c_hash;
    struct list_head    c_lru;

    unsigned char        c_state,    /* unused, inprog, done */
                c_type,        /* status, buffer */
                c_secure : 1;    /* req came from port < 1024 */
    struct sockaddr_in    c_addr;
    __be32            c_xid;
    u32            c_prot;
    u32            c_proc;
    u32            c_vers;
    unsigned long        c_timestamp;
    union {
        struct kvec    u_vec;
        __be32        u_status;
    }            c_u;
};

#define c_replvec        c_u.u_vec
#define c_replstat        c_u.u_status

/* cache entry states */
enum {
    RC_UNUSED,
    RC_INPROG,
    RC_DONE
};

/* return values */
enum {
    RC_DROPIT,
    RC_REPLY,
    RC_DOIT,
    RC_INTR
};

/*
 * Cache types.
 * We may want to add more types one day, e.g. for diropres and
 * attrstat replies. Using cache entries with fixed length instead
 * of buffer pointers may be more efficient.
 */
enum {
    RC_NOCACHE,
    RC_REPLSTAT,
    RC_REPLBUFF,
};

/*
 * If requests are retransmitted within this interval, they're dropped.
 */
#define RC_DELAY        (HZ/5)

void    nfsd_cache_init(void);
void    nfsd_cache_shutdown(void);
int    nfsd_cache_lookup(struct svc_rqst *, int);
void    nfsd_cache_update(struct svc_rqst *, int, __be32 *);

#endif /* __KERNEL__ */
#endif /* NFSCACHE_H */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0047 ]--