!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/pgsql-9.6/include/server/utils/   drwxr-xr-x
Free 6182.2 GB of 6263.4 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:     inet.h (4.6 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*-------------------------------------------------------------------------
 *
 * inet.h
 *      Declarations for operations on INET datatypes.
 *
 *
 * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 * src/include/utils/inet.h
 *
 *-------------------------------------------------------------------------
 */
#ifndef INET_H
#define INET_H

#include "fmgr.h"

/*
 *    This is the internal storage format for IP addresses
 *    (both INET and CIDR datatypes):
 */
typedef struct
{
    unsigned char family;        /* PGSQL_AF_INET or PGSQL_AF_INET6 */
    unsigned char bits;            /* number of bits in netmask */
    unsigned char ipaddr[16];    /* up to 128 bits of address */
} inet_struct;

/*
 * Referencing all of the non-AF_INET types to AF_INET lets us work on
 * machines which may not have the appropriate address family (like
 * inet6 addresses when AF_INET6 isn't present) but doesn't cause a
 * dump/reload requirement.  Existing databases used AF_INET for the family
 * type on disk.
 */
#define PGSQL_AF_INET    (AF_INET + 0)
#define PGSQL_AF_INET6    (AF_INET + 1)

/*
 * Both INET and CIDR addresses are represented within Postgres as varlena
 * objects, ie, there is a varlena header in front of the struct type
 * depicted above.  This struct depicts what we actually have in memory
 * in "uncompressed" cases.  Note that since the maximum data size is only
 * 18 bytes, INET/CIDR will invariably be stored into tuples using the
 * 1-byte-header varlena format.  However, we have to be prepared to cope
 * with the 4-byte-header format too, because various code may helpfully
 * try to "decompress" 1-byte-header datums.
 */
typedef struct
{
    char        vl_len_[4];        /* Do not touch this field directly! */
    inet_struct inet_data;
} inet;

/*
 *    Access macros.  We use VARDATA_ANY so that we can process short-header
 *    varlena values without detoasting them.  This requires a trick:
 *    VARDATA_ANY assumes the varlena header is already filled in, which is
 *    not the case when constructing a new value (until SET_INET_VARSIZE is
 *    called, which we typically can't do till the end).  Therefore, we
 *    always initialize the newly-allocated value to zeroes (using palloc0).
 *    A zero length word will look like the not-1-byte case to VARDATA_ANY,
 *    and so we correctly construct an uncompressed value.
 *
 *    Note that ip_addrsize(), ip_maxbits(), and SET_INET_VARSIZE() require
 *    the family field to be set correctly.
 */
#define ip_family(inetptr) \
    (((inet_struct *) VARDATA_ANY(inetptr))->family)

#define ip_bits(inetptr) \
    (((inet_struct *) VARDATA_ANY(inetptr))->bits)

#define ip_addr(inetptr) \
    (((inet_struct *) VARDATA_ANY(inetptr))->ipaddr)

#define ip_addrsize(inetptr) \
    (ip_family(inetptr) == PGSQL_AF_INET ? 4 : 16)

#define ip_maxbits(inetptr) \
    (ip_family(inetptr) == PGSQL_AF_INET ? 32 : 128)

#define SET_INET_VARSIZE(dst) \
    SET_VARSIZE(dst, VARHDRSZ + offsetof(inet_struct, ipaddr) + \
                ip_addrsize(dst))


/*
 *    This is the internal storage format for MAC addresses:
 */
typedef struct macaddr
{
    unsigned char a;
    unsigned char b;
    unsigned char c;
    unsigned char d;
    unsigned char e;
    unsigned char f;
} macaddr;

/*
 * fmgr interface macros
 */
#define DatumGetInetP(X)    ((inet *) PG_DETOAST_DATUM(X))
#define DatumGetInetPP(X)    ((inet *) PG_DETOAST_DATUM_PACKED(X))
#define InetPGetDatum(X)    PointerGetDatum(X)
#define PG_GETARG_INET_P(n) DatumGetInetP(PG_GETARG_DATUM(n))
#define PG_GETARG_INET_PP(n) DatumGetInetPP(PG_GETARG_DATUM(n))
#define PG_RETURN_INET_P(x) return InetPGetDatum(x)
/* macaddr is a fixed-length pass-by-reference datatype */
#define DatumGetMacaddrP(X)    ((macaddr *) DatumGetPointer(X))
#define MacaddrPGetDatum(X)    PointerGetDatum(X)
#define PG_GETARG_MACADDR_P(n) DatumGetMacaddrP(PG_GETARG_DATUM(n))
#define PG_RETURN_MACADDR_P(x) return MacaddrPGetDatum(x)

/*
 * Support functions in network.c
 */
extern int    bitncmp(const unsigned char *l, const unsigned char *r, int n);
extern int    bitncommon(const unsigned char *l, const unsigned char *r, int n);

/*
 * GiST support functions in network_gist.c
 */
extern Datum inet_gist_fetch(PG_FUNCTION_ARGS);
extern Datum inet_gist_consistent(PG_FUNCTION_ARGS);
extern Datum inet_gist_union(PG_FUNCTION_ARGS);
extern Datum inet_gist_compress(PG_FUNCTION_ARGS);
extern Datum inet_gist_decompress(PG_FUNCTION_ARGS);
extern Datum inet_gist_penalty(PG_FUNCTION_ARGS);
extern Datum inet_gist_picksplit(PG_FUNCTION_ARGS);
extern Datum inet_gist_same(PG_FUNCTION_ARGS);

/*
 * Estimation functions in network_selfuncs.c
 */
extern Datum networksel(PG_FUNCTION_ARGS);
extern Datum networkjoinsel(PG_FUNCTION_ARGS);

#endif   /* INET_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.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0119 ]--