SILENT KILLERPanel

Current Path: > > opt > cloudlinux > alt-php74 > root > usr > include > php > ext > mysqlnd > >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/cloudlinux/alt-php74/root/usr/include/php/ext/mysqlnd//

NameTypeSizeLast ModifiedActions
config-win.h File 3151 bytes July 09 2025 08:28:25.
mysql_float_to_double.h File 2029 bytes July 09 2025 08:28:25.
mysqlnd.h File 19168 bytes July 09 2025 08:28:25.
mysqlnd_alloc.h File 4821 bytes July 09 2025 08:28:25.
mysqlnd_auth.h File 4174 bytes July 09 2025 08:28:25.
mysqlnd_block_alloc.h File 1595 bytes July 09 2025 08:28:25.
mysqlnd_charset.h File 2306 bytes July 09 2025 08:28:25.
mysqlnd_commands.h File 1351 bytes July 09 2025 08:28:25.
mysqlnd_connection.h File 3241 bytes July 09 2025 08:28:25.
mysqlnd_debug.h File 10064 bytes July 09 2025 08:28:25.
mysqlnd_enum_n_def.h File 21155 bytes July 09 2025 08:28:25.
mysqlnd_ext_plugin.h File 8329 bytes July 09 2025 08:28:26.
mysqlnd_libmysql_compat.h File 7596 bytes July 09 2025 08:28:26.
mysqlnd_plugin.h File 1479 bytes July 09 2025 08:28:26.
mysqlnd_portability.h File 15594 bytes July 09 2025 08:28:26.
mysqlnd_priv.h File 2341 bytes July 09 2025 08:28:26.
mysqlnd_protocol_frame_codec.h File 1633 bytes July 09 2025 08:28:26.
mysqlnd_ps.h File 2295 bytes July 09 2025 08:28:26.
mysqlnd_read_buffer.h File 1381 bytes July 09 2025 08:28:26.
mysqlnd_result.h File 1886 bytes July 09 2025 08:28:26.
mysqlnd_result_meta.h File 1690 bytes July 09 2025 08:28:26.
mysqlnd_reverse_api.h File 1875 bytes July 09 2025 08:28:26.
mysqlnd_statistics.h File 5117 bytes July 09 2025 08:28:26.
mysqlnd_structs.h File 65569 bytes July 09 2025 08:28:27.
mysqlnd_vio.h File 1576 bytes July 09 2025 08:28:27.
mysqlnd_wireprotocol.h File 10192 bytes July 09 2025 08:28:27.
php_mysqlnd.h File 1376 bytes July 09 2025 08:28:27.

Reading File: //opt/cloudlinux/alt-php74/root/usr/include/php/ext/mysqlnd///config-win.h

/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
This file is public domain and comes with NO WARRANTY of any kind */

/* Defines for Win32 to make it compatible for MySQL */

#ifndef _MYSQLND_CONFIG_WIN_H
#define _MYSQLND_CONFIG_WIN_H

#include <sys/locking.h>
#include <windows.h>
#include <math.h>			/* Because of rint() */
#include <fcntl.h>
#include <io.h>
#include <malloc.h>

#include <win32/php_stdint.h>

#ifndef HAVE_INT8_T
#define HAVE_INT8_T
#endif
#ifndef HAVE_UINT8_T
#define HAVE_UINT8_T
#endif
#ifndef HAVE_INT16_T
#define HAVE_INT16_T
#endif
#ifndef HAVE_UINT16_T
#define HAVE_UINT16_T
#endif
#ifndef HAVE_INT32_T
#define HAVE_INT32_T
#endif
#ifndef HAVE_UINT32_T
#define HAVE_UINT32_T
#endif
#ifndef HAVE_INT64_T
#define HAVE_INT64_T
#endif
#ifndef HAVE_UINT64_T
#define HAVE_UINT64_T
#endif


#ifndef _WIN64
#ifndef _WIN32
#define _WIN32				/* Compatible with old source */
#endif
#ifndef __WIN32__
#define __WIN32__
#endif
#endif /* _WIN64 */
#ifndef __WIN__
#define __WIN__				/* To make it easier in VC++ */
#endif

/* Type information */

#define SIZEOF_LONG		4
#define SIZEOF_LONG_LONG	8


#ifndef _WIN64
/* Optimized store functions for Intel x86 */

#define sint2korr(A)	(*((int16_t *) (A)))
#define sint3korr(A)	((int32_t) ((((zend_uchar) (A)[2]) & 128) ? \
										(((uint32_t) 255L << 24) | \
										(((uint32_t) (zend_uchar) (A)[2]) << 16) |\
										(((uint32_t) (zend_uchar) (A)[1]) << 8) | \
										((uint32_t) (zend_uchar) (A)[0])) : \
										(((uint32_t) (zend_uchar) (A)[2]) << 16) |\
										(((uint32_t) (zend_uchar) (A)[1]) << 8) | \
										((uint32_t) (zend_uchar) (A)[0])))
#define sint4korr(A)	(*((int32_t *) (A)))
#define uint2korr(A)	(*((uint16_t *) (A)))
#define uint3korr(A)	(int32_t) (*((uint32_t *) (A)) & 0xFFFFFF)
#define uint4korr(A)	(*((uint32_t *) (A)))
#define uint5korr(A)	((uint64_t)(((uint32_t) ((zend_uchar) (A)[0])) +\
									(((uint32_t) ((zend_uchar) (A)[1])) << 8) +\
									(((uint32_t) ((zend_uchar) (A)[2])) << 16) +\
									(((uint32_t) ((zend_uchar) (A)[3])) << 24)) +\
									(((uint64_t) ((zend_uchar) (A)[4])) << 32))
#define uint8korr(A)	(*((uint64_t *) (A)))
#define sint8korr(A)	(*((int64_t *) (A)))
#define int2store(T,A)	*((uint16_t*) (T))= (uint16_t) (A)
#define int3store(T,A)		{	*(T)=  (zend_uchar) ((A));\
								*(T+1)=(zend_uchar) (((uint32_t) (A) >> 8));\
								*(T+2)=(zend_uchar) (((A) >> 16)); }
#define int4store(T,A)	*((int32_t *) (T))= (int32_t) (A)
#define int5store(T,A)	{	*(T)= (zend_uchar)((A));\
							*((T)+1)=(zend_uchar) (((A) >> 8));\
							*((T)+2)=(zend_uchar) (((A) >> 16));\
							*((T)+3)=(zend_uchar) (((A) >> 24)); \
							*((T)+4)=(zend_uchar) (((A) >> 32)); }
#define int8store(T,A)	*((uint64_t *) (T))= (uint64_t) (A)

#define float8get(V,M)	{	*((int32_t *) &V) = *((int32_t*) M); \
							*(((int32_t *) &V)+1) = *(((int32_t*) M)+1); }
#define float8store(T,V) {	*((int32_t *) T) = *((int32_t*) &V); \
							*(((int32_t *) T)+1) = *(((int32_t*) &V)+1); }
#define float4get(V,M) { *((int32_t *) &(V)) = *((int32_t*) (M)); }

#endif /* _WIN64 */

#endif /* _MYSQLND_CONFIG_WIN_H */

SILENT KILLER Tool