repo_full_name
stringlengths
6
93
repo_url
stringlengths
25
112
repo_api_url
stringclasses
28 values
owner
stringclasses
28 values
repo_name
stringclasses
28 values
description
stringclasses
28 values
stars
int64
617
98.8k
forks
int64
31
355
watchers
int64
990
999
license
stringclasses
2 values
default_branch
stringclasses
2 values
repo_created_at
timestamp[s]date
2012-07-24 23:12:50
2025-06-16 08:07:28
repo_updated_at
timestamp[s]date
2026-02-23 15:23:15
2026-05-03 18:52:12
repo_topics
listlengths
0
13
repo_languages
unknown
is_fork
bool
1 class
open_issues
int64
3
104
file_path
stringlengths
3
208
file_name
stringclasses
509 values
file_extension
stringclasses
1 value
file_size_bytes
int64
101
84k
file_url
stringclasses
627 values
file_raw_url
stringclasses
627 values
file_sha
stringclasses
624 values
language
stringclasses
8 values
parsed_at
stringdate
2026-05-04 01:12:36
2026-05-04 19:41:55
text
stringlengths
100
102k
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/cipher_ascon.c
null
null
null
null
null
null
C
2026-05-04T18:46:23.490419
/* ** Name: cipher_ascon.c ** Purpose: Implementation of cipher Ascon ** Author: Ulrich Telle ** Created: 2023-11-13 ** Copyright: (c) 2023-2023 Ulrich Telle ** License: MIT */ #include "cipher_common.h" /* --- Ascon --- */ #if HAVE_CIPHER_ASCON128 #define CIPHER_NAME_ASCON128 "ascon128" /...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/chacha20poly1305.c
null
null
null
null
null
null
C
2026-05-04T18:46:23.502157
/* ** This file contains the implementation for ** - the ChaCha20 cipher ** - the Poly1305 message digest ** ** The code was taken from the public domain implementation ** of the sqleet project (https://github.com/resilar/sqleet) */ #include "mystdint.h" #include <string.h> #define ROL32(x, c) (((x) << (c)) | ((x...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/cipher_chacha20.c
null
null
null
null
null
null
C
2026-05-04T18:46:23.509943
/* ** Name: cipher_chacha20.c ** Purpose: Implementation of cipher ChaCha20 - Poly1305 ** Author: Ulrich Telle ** Created: 2020-02-02 ** Copyright: (c) 2006-2020 Ulrich Telle ** License: MIT */ #include "cipher_common.h" /* --- ChaCha20-Poly1305 cipher (plus sqleet variant) --- */ #if HAVE_C...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/carray.c
null
null
null
null
null
null
C
2026-05-04T18:46:23.511425
/* ** 2016-06-29 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** **************************...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/cipher_common.h
null
null
null
null
null
null
C
2026-05-04T18:46:23.522518
/* ** Name: cipher_common.h ** Purpose: Header for the ciphers of SQLite3 Multiple Ciphers ** Author: Ulrich Telle ** Created: 2020-02-02 ** Copyright: (c) 2006-2022 Ulrich Telle ** License: MIT */ #ifndef CIPHER_COMMON_H_ #define CIPHER_COMMON_H_ #include "sqlite3mc.h" /* // ATTENTION: Mac...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/cipher_config.c
null
null
null
null
null
null
C
2026-05-04T18:46:23.532214
/* ** Name: cipher_config.c ** Purpose: Configuration of SQLite codecs ** Author: Ulrich Telle ** Created: 2020-03-02 ** Copyright: (c) 2006-2023 Ulrich Telle ** License: MIT */ #include "cipher_common.h" #include "cipher_config.h" /* --- Codec --- */ SQLITE_PRIVATE int sqlite3mcGetGlobalCi...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/cipher_common.c
null
null
null
null
null
null
C
2026-05-04T18:46:23.562378
/* ** Name: cipher_common.c ** Purpose: Implementation of SQLite codecs ** Author: Ulrich Telle ** Created: 2020-02-02 ** Copyright: (c) 2006-2022 Ulrich Telle ** License: MIT */ #include "cipher_common.h" static unsigned char padding[] = "\x28\xBF\x4E\x5E\x4E\x75\x8A\x41\x64\x00\x4E\x56\xFF...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/cipher_config.h
null
null
null
null
null
null
C
2026-05-04T18:46:23.603169
/* ** Name: cipher_config.h ** Purpose: Header for the cipher configuration of SQLite3 Multiple Ciphers ** Author: Ulrich Telle ** Created: 2020-03-10 ** Copyright: (c) 2006-2020 Ulrich Telle ** License: MIT */ #ifndef CIPHER_CONFIG_H_ #define CIPHER_CONFIG_H_ #include "sqlite3mc.h" SQLITE_...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/cipher_sds_rc4.c
null
null
null
null
null
null
C
2026-05-04T18:46:23.630431
/* ** Name: cipher_sds_rc4.c ** Purpose: Implementation of cipher System.Data.SQLite3 RC4 ** Author: Ulrich Telle ** Created: 2020-02-02 ** Copyright: (c) 2006-2020 Ulrich Telle ** License: MIT */ #include "cipher_common.h" /* --- RC4 cipher (System.Data.SQLite) --- */ #if HAVE_CIPHER_RC4 #...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/cipher_wxaes128.c
null
null
null
null
null
null
C
2026-05-04T18:46:24.083963
/* ** Name: cipher_wxaes128.c ** Purpose: Implementation of cipher wxSQLite3 AES 128-bit ** Author: Ulrich Telle ** Created: 2020-02-02 ** Copyright: (c) 2006-2020 Ulrich Telle ** License: MIT */ #include "cipher_common.h" /* --- AES 128-bit cipher (wxSQLite3) --- */ #if HAVE_CIPHER_AES_128_...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/cipher_sqlcipher.c
null
null
null
null
null
null
C
2026-05-04T18:46:24.114948
/* ** Name: cipher_sqlcipher.c ** Purpose: Implementation of cipher SQLCipher (version 1 to 4) ** Author: Ulrich Telle ** Created: 2020-02-02 ** Copyright: (c) 2006-2020 Ulrich Telle ** License: MIT */ #include "cipher_common.h" /* --- SQLCipher AES256CBC-HMAC cipher --- */ #if HAVE_CIPHER_S...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/codecext.c
null
null
null
null
null
null
C
2026-05-04T18:46:24.116232
/* ** Name: codecext.c ** Purpose: Implementation of SQLite codec API ** Author: Ulrich Telle ** Created: 2006-12-06 ** Copyright: (c) 2006-2022 Ulrich Telle ** License: MIT */ /* ** Forward declaration for db codec check function. ** Used to update cached codec status after encryption change...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/cipher_wxaes256.c
null
null
null
null
null
null
C
2026-05-04T18:46:24.121836
/* ** Name: cipher_wxaes256.c ** Purpose: Implementation of cipher wxSQLite3 AES 256-bit ** Author: Ulrich Telle ** Created: 2020-02-02 ** Copyright: (c) 2006-2020 Ulrich Telle ** License: MIT */ #include "cipher_common.h" /* --- AES 256-bit cipher (wxSQLite3) --- */ #if HAVE_CIPHER_AES_256_...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/compress.c
null
null
null
null
null
null
C
2026-05-04T18:46:24.143288
/* ** 2014-06-13 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** **************************...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/codec_algos.c
null
null
null
null
null
null
C
2026-05-04T18:46:24.155817
/* ** Name: codec_algos.c ** Purpose: Implementation of SQLite codec algorithms ** Author: Ulrich Telle ** Created: 2020-02-02 ** Copyright: (c) 2006-2020 Ulrich Telle ** License: MIT */ #include "cipher_common.h" #if HAVE_CIPHER_AES_128_CBC || HAVE_CIPHER_AES_256_CBC || HAVE_CIPHER_SQLCIPHER...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/csv.c
null
null
null
null
null
null
C
2026-05-04T18:46:24.190415
/* ** 2016-05-28 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** **************************...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/extensionfunctions.c
null
null
null
null
null
null
C
2026-05-04T18:46:24.228018
/* This library will provide common mathematical and string functions in SQL queries using the operating system libraries or provided definitions. It includes the following functions: Math: acos, asin, atan, atn2, atan2, acosh, asinh, atanh, difference, degrees, radians, cos, sin, tan, cot, cosh, sinh, tanh, coth, ex...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/fastpbkdf2.c
null
null
null
null
null
null
C
2026-05-04T18:46:24.235790
/* * fast-pbkdf2 - Optimal PBKDF2-HMAC calculation * Written in 2015 by Joseph Birr-Pixton <jpixton@gmail.com> * * To the extent possible under law, the author(s) have dedicated all * copyright and related and neighboring rights to this software to the * public domain worldwide. This software is distributed witho...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/fastpbkdf2.h
null
null
null
null
null
null
C
2026-05-04T18:46:24.303173
/* * fastpbkdf2 - Faster PBKDF2-HMAC calculation * Written in 2015 by Joseph Birr-Pixton <jpixton@gmail.com> * * To the extent possible under law, the author(s) have dedicated all * copyright and related and neighboring rights to this software to the * public domain worldwide. This software is distributed without...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/md5.c
null
null
null
null
null
null
C
2026-05-04T18:46:25.074559
/* * This is an OpenSSL-compatible implementation of the RSA Data Security, Inc. * MD5 Message-Digest Algorithm (RFC 1321). * * Homepage: * http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5 * * Author: * Alexander Peslyak, better known as Solar Designer <solar at openwall.com> * * ...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/fileio.c
null
null
null
null
null
null
C
2026-05-04T18:46:25.079157
/* ** 2014-06-13 ** ** The author disclaims copyright to this source code. In place of ** a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. ** **************************...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/memory_secure.c
null
null
null
null
null
null
C
2026-05-04T18:46:25.093051
/* ** Name: mem_secure.c ** Purpose: Memory manager for SQLite3 Multiple Ciphers ** Author: Ulrich Telle ** Created: 2023-09-17 ** Copyright: (c) 2023 Ulrich Telle ** License: MIT */ /* For memset, memset_s */ #include <string.h> #ifdef _WIN32 /* For SecureZeroMemory */ #include <windows.h> ...
tursodatabase/libsql
https://github.com/tursodatabase/libsql
null
null
null
null
16,701
null
null
mit
null
null
null
null
null
null
null
libsql-ffi/bundled/SQLite3MultipleCiphers/src/miniz.h
null
null
null
null
null
null
C
2026-05-04T18:46:25.190318
#define MINIZ_EXPORT /* miniz.c 2.2.0 - public domain deflate/inflate, zlib-subset, ZIP reading/writing/appending, PNG writing See "unlicense" statement at the end of this file. Rich Geldreich <richgel99@gmail.com>, last updated Oct. 13, 2013 Implements RFC 1950: http://www.ietf.org/rfc/rfc1950.txt and RFC 195...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/comms_handlers.c
null
null
null
null
null
null
C
2026-05-04T18:46:29.102102
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <comms.h> #include <informer.h> #include <trace.h> KPHM_DEFINE_HANDLER(KphpCommsGetInformerSettings); KPHM_DEFINE_...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/driver.c
null
null
null
null
null
null
C
2026-05-04T18:46:29.124139
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * wj32 2010-2016 * jxy-s 2022-2026 * */ #include <kph.h> #include <trace.h> KPH_PAGED_FILE(); /** * \brief Opens a driver object. * * \param[out] Drive...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/alloc.c
null
null
null
null
null
null
C
2026-05-04T18:46:29.125648
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <trace.h> typedef struct _KPH_LOOKASIDE_INIT { SIZE_T Size; ULONG Tag; } KPH_LOOKASIDE_INIT, *PKPH_LOOKASI...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/comms.c
null
null
null
null
null
null
C
2026-05-04T18:46:29.126876
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <comms.h> #include <informer.h> #include <kphmsgdyn.h> #include <trace.h> #define KPH_COMMS_MIN_QUEUE_THREADS 2 #d...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/dyndata.c
null
null
null
null
null
null
C
2026-05-04T18:46:29.934597
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * wj32 2010-2016 * jxy-s 2022-2026 * */ #include <kph.h> #include <kphdyndata.h> #include <trace.h> typedef struct _KPH_DYN_INIT { PKPH_DYN_CONFIG Conf...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/cid_table.c
null
null
null
null
null
null
C
2026-05-04T18:46:29.935883
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <trace.h> #define KPH_CID_TABLE_LEVEL_MASK ((ULONG_PTR)3) #define KPH_CID_TABLE_L0 ((ULONG_PTR)0) #define KPH_CID_...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/back_trace.c
null
null
null
null
null
null
C
2026-05-04T18:46:29.937066
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2023-2026 * */ #include <kph.h> #include <trace.h> typedef struct _KPH_STACK_BACK_TRACE_OBJECT { KSI_KAPC Apc; KEVENT CompletedEvent; ULONG Fra...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/cid_tracking.c
null
null
null
null
null
null
C
2026-05-04T18:46:29.938344
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <informer.h> #include <trace.h> typedef struct _KPH_CID_APC { KSI_KAPC Apc; KEVENT CompletedEvent; PKP...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/alpc.c
null
null
null
null
null
null
C
2026-05-04T18:46:31.128899
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <trace.h> KPH_PAGED_FILE(); #define KPH_ALPC_NAME_BUFFER_SIZE ((MAX_PATH * 2) + sizeof(OBJECT_NAME_INFORMATION)) ...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/hash.c
null
null
null
null
null
null
C
2026-05-04T18:46:31.150646
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <trace.h> #define KPH_HASHING_BUFFER_SIZE (16 * 1024) #define KPH_HASH_EACACHE_MD5 KPH_KERNEL_PUR...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/include/informer_filep.h
null
null
null
null
null
null
C
2026-05-04T18:46:31.241727
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2023-2026 * */ #pragma once // informer_fileop.c _Function_class_(PFLT_POST_OPERATION_CALLBACK) _IRQL_requires_max_(DISPATCH_LEVEL) FLT_POSTOP_CALLBACK_STAT...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/include/informer.h
null
null
null
null
null
null
C
2026-05-04T18:46:31.278162
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #pragma once #include <kph.h> #include <kphmsg.h> _IRQL_requires_max_(PASSIVE_LEVEL) VOID KphCleanupInformer( VOID ); _IRQL_requires...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/include/comms.h
null
null
null
null
null
null
C
2026-05-04T18:46:31.355008
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #pragma once #include <kphmsg.h> typedef struct _KPH_CLIENT_INFORMER_STATE { KPH_MESSAGE_TIMEOUTS MessageTimeouts; KPH_RATE_LIMIT Asy...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/include/kph.h
null
null
null
null
null
null
C
2026-05-04T18:46:31.391635
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #pragma once #pragma warning(push) #pragma warning(disable: 5103) // invalid preprocessing token (/Zc:preprocessor) #include <ntifs.h> #includ...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/include/trace.h
null
null
null
null
null
null
C
2026-05-04T18:46:32.002139
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #pragma once #define WPP_CONTROL_GUIDS \ WPP_DEFINE_CONTROL_GUID( ...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/include/pooltags.h
null
null
null
null
null
null
C
2026-05-04T18:46:32.003789
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #pragma once // alloc #define KPH_TAG_PAGED_LOOKASIDE_OBJECT '0ApK' #define KPH_TAG_NPAGED_LOOKASIDE_OBJECT '1ApK' // comm...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/include/ntfill.h
null
null
null
null
null
null
C
2026-05-04T18:46:32.019185
/* * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #pragma once typedef struct _CLIENT_ID32 { ULONG UniqueProcess; ULONG UniqueThread; } CLIENT_ID32, *PCLIENT_ID32; typedef struct _CLIENT_ID64 { ULONGLONG UniqueProcess; ULONGLONG UniqueThread; } CLIENT_ID64,...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/informer_debug.c
null
null
null
null
null
null
C
2026-05-04T18:46:32.202503
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <informer.h> #include <comms.h> #include <kphmsgdyn.h> #include <trace.h> typedef struct _KPH_DBG_PRINT_SLOT { ...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/informer_file.c
null
null
null
null
null
null
C
2026-05-04T18:46:32.271309
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <comms.h> #include <informer_filep.h> #include <trace.h> KPH_PROTECTED_DATA_SECTION_RO_PUSH(); static const UNICOD...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/informer.c
null
null
null
null
null
null
C
2026-05-04T18:46:32.561938
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2023-2026 * */ #include <kph.h> #include <comms.h> #include <informer.h> #include <trace.h> typedef struct _KPH_INFORMER_STATE { KPH_INFORMER_OPTIONS O...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/informer_image.c
null
null
null
null
null
null
C
2026-05-04T18:46:32.872771
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <informer.h> #include <comms.h> #include <kphmsgdyn.h> #include <trace.h> KPH_PROTECTED_DATA_SECTION_PUSH(); stati...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/informer_filenc.c
null
null
null
null
null
null
C
2026-05-04T18:46:32.976690
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2023-2026 * */ #include <kph.h> #include <informer_filep.h> #include <trace.h> KPH_PROTECTED_DATA_SECTION_RO_PUSH(); static UNICODE_STRING KphpCachedFileNa...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/informer_object.c
null
null
null
null
null
null
C
2026-05-04T18:46:33.107569
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <informer.h> #include <comms.h> #include <kphmsgdyn.h> #include <trace.h> typedef union _KPH_OB_OPTIONS { UCHA...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/informer_fileop.c
null
null
null
null
null
null
C
2026-05-04T18:46:33.355627
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2023-2026 * */ #include <kph.h> #include <informer.h> #include <comms.h> #include <kphmsgdyn.h> #include <informer_filep.h> #include <trace.h> typedef unio...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/informer_silo.c
null
null
null
null
null
null
C
2026-05-04T18:46:33.544596
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2026 * */ #include <kph.h> #include <informer.h> #include <comms.h> #include <kphmsgdyn.h> #include <trace.h> KPH_PAGED_FILE(); static PSILO_MONITOR KphpS...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/informer_thread.c
null
null
null
null
null
null
C
2026-05-04T18:46:33.684924
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <informer.h> #include <comms.h> #include <trace.h> typedef enum _KPH_THREAD_NOTIFY_TYPE { KphThreadNotifyCreat...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/device.c
null
null
null
null
null
null
C
2026-05-04T18:46:33.729611
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2024-2026 * */ #include <kph.h> #include <trace.h> KPH_PAGED_FILE(); /** * \brief Open a device object. * * \param[out] DriverHandle Set to the opened ...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/knowndll.c
null
null
null
null
null
null
C
2026-05-04T18:46:33.771058
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <trace.h> typedef struct _KPH_KNOWN_DLL_EXPORT { PCHAR Name; PVOID* Storage; } KPH_KNOWN_DLL_EXPORT, *PKPH...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/informer_process.c
null
null
null
null
null
null
C
2026-05-04T18:46:33.797342
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <informer.h> #include <comms.h> #include <kphmsgdyn.h> #include <trace.h> typedef struct _KPH_PROCESS_CREATE_APC {...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/kphobject.c
null
null
null
null
null
null
C
2026-05-04T18:46:34.002029
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <trace.h> #ifdef _WIN64 #define KPH_ATOMIC_OBJECT_REF_SHARED_MAX 7 #define KPH_ATOMIC_OBJECT_REF_EXCLUSIVE_BIT ...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/kphthread.c
null
null
null
null
null
null
C
2026-05-04T18:46:34.178007
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2025-2026 * */ #include <kph.h> #include <trace.h> typedef struct _KPH_THREAD_START_CONTEXT { PKPH_THREAD_START_ROUTINE StartRoutine; PVOID Paramet...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/ksidll.c
null
null
null
null
null
null
C
2026-05-04T18:46:34.370007
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <process.h> #include <sistatus.h> // // This library is intended to be an extension of core OS functionality which ...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/lsa.c
null
null
null
null
null
null
C
2026-05-04T18:46:34.461629
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2024-2026 * */ #include <kph.h> #include <trace.h> KPH_PROTECTED_DATA_SECTION_RO_PUSH(); static const UNICODE_STRING KphpLsaPortName = RTL_CONSTANT_STRING(...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/object.c
null
null
null
null
null
null
C
2026-05-04T18:46:34.482749
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * wj32 2010-2016 * jxy-s 2021-2026 * */ #include <kph.h> #include <trace.h> typedef struct _KPH_ENUMERATE_PROCESS_HANDLES_CONTEXT { PKPH_DYN Dyn; K...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/main.c
null
null
null
null
null
null
C
2026-05-04T18:46:34.555598
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * wj32 2010-2016 * jxy-s 2021-2026 * */ #include <kph.h> #include <informer.h> #include <trace.h> KPH_PROTECTED_DATA_SECTION_RO_PUSH(); static const BYTE K...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/parameters.c
null
null
null
null
null
null
C
2026-05-04T18:46:34.644848
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2023-2026 * */ #include <kph.h> typedef enum _KPH_PARAMETER_TYPE { KphParameterTypeULong, KphParameterTypeString, } KPH_PARAMETER_TYPE, *PKPH_PARAME...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/file.c
null
null
null
null
null
null
C
2026-05-04T18:46:34.754882
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <trace.h> KPH_PAGED_FILE(); /** * \brief Checks if a file handle is safe to issue a query through. * * \detail...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/process.c
null
null
null
null
null
null
C
2026-05-04T18:46:34.797449
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * wj32 2010-2016 * jxy-s 2020-2026 * */ #include <kph.h> #include <trace.h> KPH_PAGED_FILE(); /** * \brief Opens a process. * * \param[out] ProcessHand...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/imgcoherency.c
null
null
null
null
null
null
C
2026-05-04T18:46:34.867553
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2024-2026 * */ #include <kph.h> #include <trace.h> KPH_PAGED_FILE(); /** * \brief Checks an image for coherency against the data backing the image. * *...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/dynimp.c
null
null
null
null
null
null
C
2026-05-04T18:46:34.886603
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * wj32 2010-2016 * jxy-s 2020-2026 * */ #include <kph.h> #include <trace.h> KPH_PROTECTED_DATA_SECTION_PUSH(); PPS_SET_LOAD_IMAGE_NOTIFY_ROUTINE_EX KphDynP...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/protection.c
null
null
null
null
null
null
C
2026-05-04T18:46:34.965817
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * wj32 2010-2016 * jxy-s 2020-2026 * */ #include <kph.h> #include <trace.h> typedef struct _KPH_ENUM_FOR_PROTECTION { PKPH_DYN Dyn; PKPH_PROCESS_CO...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/ringbuff.c
null
null
null
null
null
null
C
2026-05-04T18:46:35.044478
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2025-2026 * */ #include <kph.h> #include <trace.h> KPH_PROTECTED_DATA_SECTION_PUSH(); static PKPH_OBJECT_TYPE KphpRingBufferType = NULL; KPH_PROTECTED_DATA...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/ratelmt.c
null
null
null
null
null
null
C
2026-05-04T18:46:35.220839
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2025-2026 * */ #include <kph.h> #include <trace.h> // // Time granularity for rate limiter timestamps (100-nano units per tick). // 10,000,000 / 100 = 100 ...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/system.c
null
null
null
null
null
null
C
2026-05-04T18:46:35.257059
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2022-2026 * */ #include <kph.h> #include <trace.h> KPH_PAGED_FILE(); /** * \brief Performs generic system control actions. * * \param[in] SystemControl...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/session_token.c
null
null
null
null
null
null
C
2026-05-04T18:46:35.260071
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2023-2026 * */ #include <kph.h> #include <trace.h> typedef struct _KPH_SESSION_TOKEN_INIT { LARGE_INTEGER Expiry; ULONG Privileges; LONG Uses; ...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/thread.c
null
null
null
null
null
null
C
2026-05-04T18:46:35.379500
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * wj32 2010-2016 * jxy-s 2022-2026 * */ #include <kph.h> #include <trace.h> KPH_PAGED_FILE(); /** * \brief Opens a thread. * * \param[out] ThreadHandle...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/umaccess.c
null
null
null
null
null
null
C
2026-05-04T18:46:35.421484
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2025-2026 * */ #include <kph.h> #include <trace.h> KPH_PAGED_FILE(); /** * \brief Captures a Unicode string from user mode. * * \param[in] UnicodeStrin...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/util.c
null
null
null
null
null
null
C
2026-05-04T18:46:35.632845
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * wj32 2016 * jxy-s 2022-2026 * */ #include <kph.h> #include <search.h> #include <trace.h> /** * \brief Performs a binary search of a sorted array. * * ...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/verify.c
null
null
null
null
null
null
C
2026-05-04T18:46:35.645451
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * wj32 2016 * jxy-s 2020-2026 * */ #include <kph.h> #include <trace.h> #define KPH_KEY_MATERIAL_SIZE ((ULONG)0x21B) #define KPH_KEY_ALG_HANDLE ...
winsiderss/systeminformer
https://github.com/winsiderss/systeminformer
null
null
null
null
14,402
null
null
mit
null
null
null
null
null
null
null
KSystemInformer/informer_registry.c
null
null
null
null
null
null
C
2026-05-04T18:46:38.402957
/* * Copyright (c) 2022 Winsider Seminars & Solutions, Inc. All rights reserved. * * This file is part of System Informer. * * Authors: * * jxy-s 2023-2026 * */ #include <kph.h> #include <informer.h> #include <comms.h> #include <kphmsgdyn.h> #include <trace.h> typedef union _KPH_REG_OPTIONS { UCH...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/compat-mingw/dlfcn.h
null
null
null
null
null
null
C
2026-05-04T18:46:42.570752
#pragma once enum { RTLD_NOW, RTLD_GLOBAL }; void *dlopen(const char *path, int flag); const char *dlerror(); void *dlsym(void *dl, const char *sym);
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/compat-mingw/dlfcn.c
null
null
null
null
null
null
C
2026-05-04T18:46:42.705216
#include "dlfcn.h" #define WIN32_LEAN_AND_MEAN #include <windows.h> void *dlopen(const char *path, int flag) { return LoadLibraryA(path); } const char *dlerror() { DWORD err = GetLastError(); HLOCAL LocalAddress = NULL; FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_IGNORE_INSERTS | FOR...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/compat-mingw/unistd.h
null
null
null
null
null
null
C
2026-05-04T18:46:43.207622
#pragma once #include <assert.h> #include <stdio.h> #include <time.h> #include <process.h> #include <io.h> #include <assert.h> #include <stdlib.h> #include <errno.h> // Define missing errno values for network errors #ifndef ECONNRESET #define ECONNRESET 104 #endif #ifndef ECONNABORTED #define ECONNABORTED 103 #endif ...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/compat-mingw/sys/socket.h
null
null
null
null
null
null
C
2026-05-04T18:46:43.208990
#pragma once #define _WINSOCK_DEPRECATED_NO_WARNINGS #define WIN32_LEAN_AND_MEAN #undef FD_SETSIZE #define FD_SETSIZE 1024 #include <winsock2.h> #include <windows.h> #include <conio.h> #include <ws2ipdef.h> #include <ws2tcpip.h> #include "socket_poll.h" #include "socket_epoll.h"
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/compat-mingw/unistd.c
null
null
null
null
null
null
C
2026-05-04T18:46:43.232571
#include "unistd.h" #define _WINSOCK_DEPRECATED_NO_WARNINGS #define WIN32_LEAN_AND_MEAN #include <winsock2.h> #include <stdio.h> #include <stdint.h> #include <windows.h> #include <conio.h> #include <errno.h> // WSA error to errno mapping function static void set_errno_from_wsa_error(int wsa_error) { switch (wsa_e...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/compat-mingw/wepoll.c
null
null
null
null
null
null
C
2026-05-04T18:46:43.252675
/* * wepoll - epoll for Windows * https://github.com/piscisaureus/wepoll * * Copyright 2012-2020, Bert Belder <bertbelder@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * ...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lpcap.c
null
null
null
null
null
null
C
2026-05-04T18:46:43.337605
#include "lua.h" #include "lauxlib.h" #include "lpcap.h" #include "lpprint.h" #include "lptypes.h" #define getfromktable(cs,v) lua_rawgeti((cs)->L, ktableidx((cs)->ptop), v) #define pushluaval(cs) getfromktable(cs, (cs)->cap->idx) #define skipclose(cs,head) \ if (isopencap(head)) { assert(isclosecap(cs->cap)...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lpcode.c
null
null
null
null
null
null
C
2026-05-04T18:46:43.341716
#include <limits.h> #include "lua.h" #include "lauxlib.h" #include "lptypes.h" #include "lpcode.h" #include "lpcset.h" /* signals a "no-instruction */ #define NOINST -1 static const Charset fullset_ = {{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lpcap.h
null
null
null
null
null
null
C
2026-05-04T18:46:43.355197
#if !defined(lpcap_h) #define lpcap_h #include "lptypes.h" /* kinds of captures */ typedef enum CapKind { Cclose, /* not used in trees */ Cposition, Cconst, /* ktable[key] is Lua constant */ Cbackref, /* ktable[key] is "name" of group to get capture */ Carg, /* 'key' is arg's number */ Csimple, /*...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/compat-mingw/wepoll.h
null
null
null
null
null
null
C
2026-05-04T18:46:43.355723
/* * wepoll - epoll for Windows * https://github.com/piscisaureus/wepoll * * Copyright 2012-2020, Bert Belder <bertbelder@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * ...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lpcode.h
null
null
null
null
null
null
C
2026-05-04T18:46:43.365377
#if !defined(lpcode_h) #define lpcode_h #include "lua.h" #include "lptypes.h" #include "lptree.h" #include "lpvm.h" int checkaux (TTree *tree, int pred); int fixedlen (TTree *tree); int hascaptures (TTree *tree); int lp_gc (lua_State *L); Instruction *compile (lua_State *L, Pattern *p, uint size); void freecode (lu...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lpcset.c
null
null
null
null
null
null
C
2026-05-04T18:46:43.405343
#include "lptypes.h" #include "lpcset.h" /* ** Add to 'c' the index of the (only) bit set in byte 'b' */ static int onlybit (int c, int b) { if ((b & 0xF0) != 0) { c += 4; b >>= 4; } if ((b & 0x0C) != 0) { c += 2; b >>= 2; } if ((b & 0x02) != 0) { c += 1; } return c; } /* ** Check whether a charset is empt...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lpprint.h
null
null
null
null
null
null
C
2026-05-04T18:46:44.070507
#if !defined(lpprint_h) #define lpprint_h #include "lptree.h" #include "lpvm.h" #if defined(LPEG_DEBUG) void printpatt (Instruction *p); void printtree (TTree *tree, int ident); void printktable (lua_State *L, int idx); void printcharset (const byte *st); void printcaplist (Capture *cap); void printinst (const In...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lpprint.c
null
null
null
null
null
null
C
2026-05-04T18:46:44.072483
#include <ctype.h> #include <limits.h> #include <stdio.h> #include "lptypes.h" #include "lpprint.h" #include "lpcode.h" #if defined(LPEG_DEBUG) /* ** {====================================================== ** Printing patterns (for debugging) ** ======================================================= */ void pr...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lpcset.h
null
null
null
null
null
null
C
2026-05-04T18:46:44.074119
#if !defined(lpset_h) #define lpset_h #include "lpcset.h" #include "lpcode.h" #include "lptree.h" /* ** Extra information for the result of 'charsettype'. When result is ** IChar, 'offset' is the character. When result is ISet, 'cs' is the ** supporting bit array (with offset included), 'offset' is the offset ** ...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lptree.c
null
null
null
null
null
null
C
2026-05-04T18:46:44.075525
#include <ctype.h> #include <limits.h> #include <string.h> #include "lua.h" #include "lauxlib.h" #include "lptypes.h" #include "lpcap.h" #include "lpcode.h" #include "lpprint.h" #include "lptree.h" #include "lpcset.h" /* number of siblings for each tree */ const byte numsiblings[] = { 0, 0, 0, /* char, set, any...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lpvm.c
null
null
null
null
null
null
C
2026-05-04T18:46:44.187883
#include <limits.h> #include <string.h> #include "lua.h" #include "lauxlib.h" #include "lpcap.h" #include "lptypes.h" #include "lpvm.h" #include "lpprint.h" /* initial size for call/backtrack stack */ #if !defined(INITBACK) #define INITBACK MAXBACK #endif #define getoffset(p) (((p) + 1)->offset) static const I...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lptypes.h
null
null
null
null
null
null
C
2026-05-04T18:46:44.688357
/* ** LPeg - PEG pattern matching for Lua ** Copyright 2007-2023, Lua.org & PUC-Rio (see 'lpeg.html' for license) ** written by Roberto Ierusalimschy */ #if !defined(lptypes_h) #define lptypes_h #include <assert.h> #include <limits.h> #include <string.h> #include "lua.h" #define VERSION "1.1.0" #define...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lptree.h
null
null
null
null
null
null
C
2026-05-04T18:46:44.688903
#if !defined(lptree_h) #define lptree_h #include "lptypes.h" /* ** types of trees */ typedef enum TTag { TChar = 0, /* 'n' = char */ TSet, /* the set is encoded in 'u.set' and the next 'u.set.size' bytes */ TAny, TTrue, TFalse, TUTFR, /* range of UTF-8 codepoints; 'n' has initial codepoint; ...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lua-md5/compat-5.2.c
null
null
null
null
null
null
C
2026-05-04T18:46:44.691197
#include "lua.h" #include "lauxlib.h" #include "compat-5.2.h" #if !defined LUA_VERSION_NUM || LUA_VERSION_NUM==501 /* ** Adapted from Lua 5.2.0 */ void luaL_setfuncs (lua_State *L, const luaL_Reg *l, int nup) { luaL_checkstack(L, nup+1, "too many upvalues"); for (; l->name != NULL; l++) { /* fill the table with g...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lpeg/lpvm.h
null
null
null
null
null
null
C
2026-05-04T18:46:44.692364
#if !defined(lpvm_h) #define lpvm_h #include "lpcap.h" /* ** About Character sets in instructions: a set is a bit map with an ** initial offset, in bits, and a size, in number of instructions. ** aux1 has the default value for the bits outsize that range. */ /* Virtual Machine's instructions */ typedef enum Opcod...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lua-md5/md5.c
null
null
null
null
null
null
C
2026-05-04T18:46:46.557063
/** * $Id: md5.c,v 1.2 2008/03/24 20:59:12 mascarenhas Exp $ * Hash function MD5 * @author Marcela Ozorio Suarez, Roberto I. */ #include <string.h> #include "md5.h" #define WORD 32 #define MASK 0xFFFFFFFF #if __STDC_VERSION__ >= 199901L #include <stdint.h> typedef uint32_t WORD32; #else typedef unsigned int WO...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lua-md5/md5lib.c
null
null
null
null
null
null
C
2026-05-04T18:46:46.567877
/** * $Id: md5lib.c,v 1.10 2008/05/12 20:51:27 carregal Exp $ * Cryptographic and Hash functions for Lua * @author Roberto Ierusalimschy */ #include <stdlib.h> #include <string.h> #include <time.h> #include <lua.h> #include <lauxlib.h> #include "md5.h" #include "compat-5.2.h" /** * Hash function. Returns a h...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lua-md5/compat-5.2.h
null
null
null
null
null
null
C
2026-05-04T18:46:46.661206
#if !defined LUA_VERSION_NUM /* Lua 5.0 */ #define luaL_Reg luaL_reg #define luaL_addchar(B,c) \ ((void)((B)->p < ((B)->buffer+LUAL_BUFFERSIZE) || luaL_prepbuffer(B)), \ (*(B)->p++ = (char)(c))) #endif #if LUA_VERSION_NUM==501 /* Lua 5.1 */ #define lua_rawlen lua_objlen #endif void luaL_setfuncs (lua_State *L, ...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lua/lapi.c
null
null
null
null
null
null
C
2026-05-04T18:46:46.662636
/* ** $Id: lapi.c $ ** Lua API ** See Copyright Notice in lua.h */ #define lapi_c #define LUA_CORE #include "lprefix.h" #include <limits.h> #include <stdarg.h> #include <string.h> #include "lua.h" #include "lapi.h" #include "ldebug.h" #include "ldo.h" #include "lfunc.h" #include "lgc.h" #include "lmem.h" #include...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lua/lbaselib.c
null
null
null
null
null
null
C
2026-05-04T18:46:46.747011
/* ** $Id: lbaselib.c $ ** Basic library ** See Copyright Notice in lua.h */ #define lbaselib_c #define LUA_LIB #include "lprefix.h" #include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "lua.h" #include "lauxlib.h" #include "lualib.h" #include "llimits.h" static int luaB_print ...
cloudwu/skynet
https://github.com/cloudwu/skynet
null
null
null
null
14,027
null
null
mit
null
null
null
null
null
null
null
3rd/lua/lauxlib.h
null
null
null
null
null
null
C
2026-05-04T18:46:46.765501
/* ** $Id: lauxlib.h $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ #ifndef lauxlib_h #define lauxlib_h #include <stddef.h> #include <stdio.h> #include "luaconf.h" #include "lua.h" /* global table */ #define LUA_GNAME "_G" typedef struct luaL_Buffer luaL_Buffer; /* ex...