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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/crf_context.h | null | null | null | null | null | null | C | 2026-05-04T18:26:25.110224 | #ifndef CRF_CONTEXT_H
#define CRF_CONTEXT_H
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include "collections.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <float.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include "collections.h"
#include "matrix.h"
/**
* Function... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/crf_trainer.h | null | null | null | null | null | null | C | 2026-05-04T18:26:25.110754 | #ifndef CRF_TRAINER_H
#define CRF_TRAINER_H
#include <stdio.h>
#include <stdlib.h>
#include "collections.h"
#include "crf_context.h"
#include "string_utils.h"
#include "tokens.h"
#include "trie.h"
#include "trie_utils.h"
typedef struct crf_trainer {
uint32_t num_classes;
khash_t(str_uint32) *features;
kh... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/crf_trainer.c | null | null | null | null | null | null | C | 2026-05-04T18:26:25.115203 | #include "crf_trainer.h"
void crf_trainer_destroy(crf_trainer_t *self) {
if (self == NULL) return;
const char *key;
uint32_t id;
if (self->features != NULL) {
kh_foreach(self->features, key, id, {
free((char *)key);
})
kh_destroy(str_uint32, self->features);
}
... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/crf.h | null | null | null | null | null | null | C | 2026-05-04T18:26:25.116244 | /*
crf.h
---------------------------------------------------------------
A linear-chain CRF tagger tries to find the best labeling
for a sequence. The feature function can use the current token,
surrounding tokens and n (typically n=2) previous predictions
to predict the current transition matrix.
*/
#ifndef CRF_H
#d... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/dedupe.h | null | null | null | null | null | null | C | 2026-05-04T18:26:25.119063 | #ifndef DEDUPE_H
#define DEDUPE_H
#include <stdlib.h>
#include <stdio.h>
#include "libpostal.h"
#include "string_utils.h"
libpostal_duplicate_status_t is_name_duplicate(char *value1, char *value2, libpostal_duplicate_options_t options);
libpostal_duplicate_status_t is_street_duplicate(char *value1, char *value2, lib... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/crf_trainer_averaged_perceptron.c | null | null | null | null | null | null | C | 2026-05-04T18:26:25.121778 | #include "crf_trainer_averaged_perceptron.h"
void crf_averaged_perceptron_trainer_destroy(crf_averaged_perceptron_trainer_t *self) {
if (self == NULL) return;
uint32_t feature_id;
khash_t(class_weights) *weights;
if (self->weights != NULL) {
kh_foreach(self->weights, feature_id, weights, {
... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/dedupe.c | null | null | null | null | null | null | C | 2026-05-04T18:26:25.145218 | #include "acronyms.h"
#include "address_parser.h"
#include "dedupe.h"
#include "expand.h"
#include "float_utils.h"
#include "jaccard.h"
#include "place.h"
#include "scanner.h"
#include "soft_tfidf.h"
#include "string_similarity.h"
#include "token_types.h"
bool expansions_intersect(cstring_array *expansions1, cstring_a... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/crf_trainer_averaged_perceptron.h | null | null | null | null | null | null | C | 2026-05-04T18:26:25.182871 | #ifndef CRF_AVERAGED_PERCEPTRON_TRAINER_H
#define CRF_AVERAGED_PERCEPTRON_TRAINER_H
#include <stdio.h>
#include <stdlib.h>
#include "averaged_perceptron_trainer.h"
#include "crf.h"
#include "crf_trainer.h"
#include "collections.h"
#include "string_utils.h"
#include "tokens.h"
#include "trie.h"
#include "trie_utils.h"... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/double_metaphone.c | null | null | null | null | null | null | C | 2026-05-04T18:26:25.905881 | #include <stdarg.h>
#include <string.h>
#include <stdbool.h>
#include "double_metaphone.h"
#include "string_utils.h"
#include "utf8proc/utf8proc.h"
static bool is_vowel(char c) {
return (c == 'A' || c == 'E' || c == 'I' || c == 'O' || c == 'U' || c == 'Y');
}
static char get_char_at(char *str, size_t len, ssize_... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/file_utils.h | null | null | null | null | null | null | C | 2026-05-04T18:26:26.260735 | #ifndef FILE_UTILS_H
#define FILE_UTILS_H
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <stdbool.h>
#include <sys/types.h>
#include "libpostal_config.h"
#include "string_utils.h"
#ifdef HAVE_DIRENT_H
#include <dirent.h>
#define NAMLEN(dirent) strlen((dirent)->d_name)
#else
... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/float_utils.c | null | null | null | null | null | null | C | 2026-05-04T18:26:26.276619 | #include "float_utils.h"
inline bool float_equals_epsilon(float a, float b, float epsilon) {
float diff = fabsf(a - b);
a = fabsf(a);
b = fabsf(b);
float largest = (b > a) ? b : a;
return (diff <= largest * epsilon);
}
inline bool float_equals(float a, float b) {
return float_equals_epsilon(... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/float_utils.h | null | null | null | null | null | null | C | 2026-05-04T18:26:26.277517 | #ifndef FLOAT_UTILS_H
#define FLOAT_UTILS_H
#include <stdlib.h>
#include <stdbool.h>
#include <float.h>
#include <math.h>
bool float_equals(float a, float b);
bool float_equals_epsilon(float a, float b, float epsilon);
float fsign(float x);
bool double_equals(double a, double b);
bool double_equals_epsilon(double a,... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/expand.c | null | null | null | null | null | null | C | 2026-05-04T18:26:26.739266 | #include <stdlib.h>
#include "expand.h"
#include "log/log.h"
#include "address_dictionary.h"
#include "collections.h"
#include "constants.h"
#include "language_classifier.h"
#include "numex.h"
#include "normalize.h"
#include "scanner.h"
#include "string_utils.h"
#include "token_types.h"
#include "transliterate.h"
#... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/expand.h | null | null | null | null | null | null | C | 2026-05-04T18:26:26.844628 | #ifndef EXPAND_H
#define EXPAND_H
#include <stdlib.h>
#include <stdio.h>
#include "libpostal.h"
#include "address_dictionary.h"
#include "collections.h"
#include "klib/khash.h"
#include "klib/ksort.h"
#include "trie_search.h"
typedef struct phrase_language {
char *language;
phrase_t phrase;
} phrase_languag... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/features.h | null | null | null | null | null | null | C | 2026-05-04T18:26:26.903348 | #ifndef FEATURES_H
#define FEATURES_H
#include <stdlib.h>
#include <stdarg.h>
#include "collections.h"
#include "string_utils.h"
#define FEATURE_SEPARATOR_CHAR "|"
// Add feature to array
void feature_array_add(cstring_array *features, size_t count, ...);
// Add feature using printf format
void feature_array_add_p... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/file_utils.c | null | null | null | null | null | null | C | 2026-05-04T18:26:26.946152 | #include "file_utils.h"
char *file_getline(FILE * f)
{
char buf[BUFSIZ];
char *ret = NULL;
size_t buf_len = 0;
size_t ret_size = 0;
while (fgets(buf, BUFSIZ, f) != NULL) {
buf_len = strlen(buf);
if (buf_len == 0) break;
ret = realloc(ret, ret_size + buf_len + 1);
... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/features.c | null | null | null | null | null | null | C | 2026-05-04T18:26:26.998497 | #include "features.h"
void feature_array_add(cstring_array *features, size_t count, ...) {
if (count <= 0) {
return;
}
va_list args;
va_start(args, count);
cstring_array_start_token(features);
bool strip_separator = true;
char_array_add_vjoined(features->str, FEATURE_SEP... |
openvenues/libpostal | https://github.com/openvenues/libpostal | null | null | null | null | 4,784 | null | null | mit | null | null | null | null | null | null | null | src/double_metaphone.h | null | null | null | null | null | null | C | 2026-05-04T18:26:30.457132 | #ifndef DOUBLE_METAPHONE__H
#define DOUBLE_METAPHONE__H
#include <stdio.h>
#include <stdlib.h>
typedef struct double_metaphone_codes {
char *primary;
char *secondary;
} double_metaphone_codes_t;
double_metaphone_codes_t *double_metaphone(char *input);
void double_metaphone_codes_destroy(double_metaphone_cod... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/bin/winkernel/driver.c | null | null | null | null | null | null | C | 2026-05-04T18:26:33.836549 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Main entry point to the MsQuic.sys driver.
--*/
#include "quic_platform.h"
#include "quic_trace.h"
#ifdef QUIC_CLOG
#include "driver.c.clog.h"
#endif
_IRQL_requires_max_(PASSIVE_LEVEL)
void
MsQuicLibraryLoad(
void
... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/bin/winuser/dllmain.c | null | null | null | null | null | null | C | 2026-05-04T18:26:33.849773 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Dynamic Link Library Entry Point
--*/
#include "quic_platform.h"
#ifdef QUIC_CLOG
#include "quic_trace.h"
#endif
void
MsQuicLibraryLoad(
void
);
void
MsQuicLibraryUnload(
void
);
BOOL
__stdcall
DllMai... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/ack_tracker.c | null | null | null | null | null | null | C | 2026-05-04T18:26:33.850808 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
The Ack Tracker manages all the packet numbers that have been received
(for duplicate packet detection) and all the packet numbers that need
to be acknowledged via an ACK_FRAME sent back to the peer. It does all
... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/bin/winkernel/msquicpcw.c | null | null | null | null | null | null | C | 2026-05-04T18:26:34.182094 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Performance Counter V2 API Interface for MsQuic.
--*/
//
// N.B. The Headers MUST be in this order to correctly compile
//
#include "quic_platform.h"
#include <wdm.h>
#include <ip2string.h>
#include "msquic.h"
#include... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/bin/winkernel/nmrprovider.c | null | null | null | null | null | null | C | 2026-05-04T18:26:34.184320 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
NMR provider for MsQuic.
--*/
#include "quic_platform.h"
#include <wdm.h>
#include "msquic.h"
#include "msquicp.h"
#include "quic_trace.h"
#ifdef QUIC_CLOG
#include "nmrprovider.c.clog.h"
#endif
typedef struct MSQUIC_N... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/bin/linux/init.c | null | null | null | null | null | null | C | 2026-05-04T18:26:34.185210 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Library init routines
--*/
#include "quic_platform.h"
void
MsQuicLibraryLoad(
void
);
void
MsQuicLibraryUnload(
void
);
static
void
Entry(
void
) __attribute__((constructor));
static
void
Exi... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/ack_tracker.h | null | null | null | null | null | null | C | 2026-05-04T18:26:34.188841 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
#if defined(__cplusplus)
extern "C" {
#endif
typedef struct QUIC_ACK_TRACKER {
//
// Range of packet numbers we have received. Used for duplicate packet
// detection. The range's growth is limited to QUIC_MAX_RANGE_D... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/bin/winuser_fuzz/dllmain.c | null | null | null | null | null | null | C | 2026-05-04T18:26:34.189730 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Dynamic Link Library Entry Point
--*/
#define QUIC_FUZZER 1
#include "msquic.h"
#include "msquic_fuzz.h"
#include "quic_platform.h"
QUIC_FUZZ_CONTEXT MsQuicFuzzerContext = {0};
extern void
CxPlatFuzzerReceiveInject(
... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/bin/winkernel/resource.h | null | null | null | null | null | null | C | 2026-05-04T18:26:34.190761 | //
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//
#define IDS_MSQUIC_DISPLAY_NAME 200
#define IDS_MSQUIC_DESCRIPTION_NAME 201
|
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/api.h | null | null | null | null | null | null | C | 2026-05-04T18:26:34.797696 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
//
// Private flag of the QUIC_CONNECTION_SHUTDOWN_FLAGS enum used for indicating
// the type of error code being passed in. Not exposed to apps because they
// should not be using different types of errors directly.
//
#define QU... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/bbr.c | null | null | null | null | null | null | C | 2026-05-04T18:26:34.799323 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Bottleneck Bandwidth and RTT (BBR) congestion control.
--*/
#include "precomp.h"
#ifdef QUIC_CLOG
#include "bbr.c.clog.h"
#endif
typedef enum BBR_STATE {
BBR_STATE_STARTUP,
BBR_STATE_DRAIN,
BBR_STATE_PRO... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/binding.h | null | null | null | null | null | null | C | 2026-05-04T18:26:34.851346 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
typedef struct QUIC_PARTITIONED_HASHTABLE QUIC_PARTITIONED_HASHTABLE;
typedef struct QUIC_STATELESS_CONTEXT QUIC_STATELESS_CONTEXT;
//
// Structure that MsQuic servers use for encoding data for stateless retries and
// NEW_TOKEN ... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/api.c | null | null | null | null | null | null | C | 2026-05-04T18:26:34.858310 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
This module provides the implementation for most of the public APIs exposed in QUIC_API_TABLE.
--*/
#include "precomp.h"
#ifdef QUIC_CLOG
#include "api.c.clog.h"
#endif
#define IS_REGISTRATION_HANDLE(Handle) \
( \
... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/binding.c | null | null | null | null | null | null | C | 2026-05-04T18:26:34.866508 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
The per UDP binding (local IP/port and optionally remote IP) state. This
includes the lookup state for processing a received packet and the list of
listeners registered.
--*/
#include "precomp.h"
#ifdef QUIC_CLO... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/congestion_control.c | null | null | null | null | null | null | C | 2026-05-04T18:26:34.999193 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Algorithm for using (but not exceeding) available network bandwidth.
The send rate is limited to the available bandwidth by
limiting the number of bytes in flight to CongestionWindow.
--*/
#include "precomp.h"
... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/cid.h | null | null | null | null | null | null | C | 2026-05-04T18:26:35.001216 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Definitions for connection IDs.
--*/
//
// The maximum CID server ID length used by MsQuic.
//
#define QUIC_MAX_CID_SID_LENGTH 5
//
// The index of the byte we use for partition ID lookup, in the connec... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/configuration.h | null | null | null | null | null | null | C | 2026-05-04T18:26:35.002292 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
//
// The different kinds of references on a Configuration.
//
typedef enum QUIC_CONFIGURATION_REF {
QUIC_CONF_REF_HANDLE,
QUIC_CONF_REF_CONNECTION,
QUIC_CONF_REF_LOAD_CRED,
QUIC_CONF_REF_CONN_START_OP,
QUIC_C... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/bbr.h | null | null | null | null | null | null | C | 2026-05-04T18:26:35.003769 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
#pragma once
#include "sliding_window_extremum.h"
#define kBbrDefaultFilterCapacity 3
#if defined(__cplusplus)
extern "C" {
#endif
typedef struct BBR_BANDWIDTH_FILTER {
//
// TRUE if bandwidth is limited by the applic... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/configuration.c | null | null | null | null | null | null | C | 2026-05-04T18:26:35.042141 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
A configuration is a container for multiple settings, including TLS security
configuration and QUIC settings. On Windows it also manages
silo and network compartment state.
--*/
#include "precomp.h"
#ifdef QUIC_... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/crypto_tls.c | null | null | null | null | null | null | C | 2026-05-04T18:26:35.640173 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
This file contains all logic for processing TLS specific data structures.
This includes the logic to decode the ALPN list and SNI from the Client
Hello, on server, and the logic to read and write the QUIC transpor... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/connection.h | null | null | null | null | null | null | C | 2026-05-04T18:26:35.681611 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
#ifdef QUIC_CLOG
#include "connection.h.clog.h"
#endif
typedef struct QUIC_LISTENER QUIC_LISTENER;
//
// Connection close flags
//
#define QUIC_CLOSE_SILENT 0x00000001U // Don't send connection close or wait for... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/connection_pool.c | null | null | null | null | null | null | C | 2026-05-04T18:26:35.706477 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Connection pools allow client application to create a pool of connections
spread across RSS cores.
To create connection spread over RSS cores, the connection pool tries multiple
port numbers, until the connec... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/congestion_control.h | null | null | null | null | null | null | C | 2026-05-04T18:26:35.745266 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
#include "bbr.h"
#include "cubic.h"
typedef struct QUIC_ACK_EVENT {
uint64_t TimeNow; // microsecond
uint64_t LargestAck;
uint64_t LargestSentPacketNumber;
//
// Number of retransmittable bytes acked durin... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/crypto.h | null | null | null | null | null | null | C | 2026-05-04T18:26:35.771722 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Definitions for the Crypto interface, which manages the send and receive
queues for TLS data.
--*/
#if defined(__cplusplus)
extern "C" {
#endif
//
// Set of callbacks for TLS.
//
extern CXPLAT_TLS_CALLBACKS QuicTls... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/cubic.h | null | null | null | null | null | null | C | 2026-05-04T18:26:35.819372 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
#pragma once
#if defined(__cplusplus)
extern "C" {
#endif
typedef enum QUIC_CUBIC_HYSTART_STATE {
HYSTART_NOT_STARTED = 0,
HYSTART_ACTIVE = 1,
HYSTART_DONE = 2
} QUIC_CUBIC_HYSTART_STATE;
typedef struct QUIC_CONGEST... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/cubic.c | null | null | null | null | null | null | C | 2026-05-04T18:26:35.820728 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
The algorithm used for adjusting CongestionWindow is CUBIC (RFC8312bis).
--*/
#include "precomp.h"
#ifdef QUIC_CLOG
#include "cubic.c.clog.h"
#endif
#include "cubic.h"
//
// BETA and C from RFC8312. 10x multiples for ... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/datagram.h | null | null | null | null | null | null | C | 2026-05-04T18:26:35.835370 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
typedef struct QUIC_DATAGRAM {
//
// Datagram send queue.
//
QUIC_SEND_REQUEST* SendQueue;
QUIC_SEND_REQUEST** PrioritySendQueueTail;
QUIC_SEND_REQUEST** SendQueueTail;
//
// API calls to Datagram... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/datagram.c | null | null | null | null | null | null | C | 2026-05-04T18:26:35.844472 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Manages the unreliable datagram feature's functionality for a connection.
--*/
#include "precomp.h"
#ifdef QUIC_CLOG
#include "datagram.c.clog.h"
#endif
#define DATAGRAM_FRAME_HEADER_LENGTH 3
#define QUIC_DATAGRAM_OVE... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/frame.c | null | null | null | null | null | null | C | 2026-05-04T18:26:35.869418 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Functions for encoding and decoding frames.
--*/
#include "precomp.h"
#ifdef QUIC_CLOG
#include "frame.c.clog.h"
#endif
_Post_equal_to_(Buffer + sizeof(uint8_t))
uint8_t*
QuicUint8Encode(
_In_ uint8_t Value,
_O... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/listener.h | null | null | null | null | null | null | C | 2026-05-04T18:26:36.820259 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
//
// Represents the Listener specific state.
//
typedef struct QUIC_LISTENER {
#ifdef __cplusplus
struct QUIC_HANDLE _;
#else
struct QUIC_HANDLE;
#endif
//
// Indicates the listener is listening on a wildcard ad... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/injection.c | null | null | null | null | null | null | C | 2026-05-04T18:26:36.822084 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Injection hooks used by msquic_fuzz to provide fuzzers with the ability
to read and modify quic payloads before they are encrypted.
--*/
#ifdef QUIC_FUZZER
#include "precomp.h"
#include "msquic_fuzz.h"
#ifdef QUIC... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/library.h | null | null | null | null | null | null | C | 2026-05-04T18:26:36.823631 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
#if defined(__cplusplus)
extern "C" {
#endif
//
// The different possible types of handles.
//
typedef enum QUIC_HANDLE_TYPE {
QUIC_HANDLE_TYPE_REGISTRATION,
QUIC_HANDLE_TYPE_CONFIGURATION,
QUIC_HANDLE_TYPE_LISTENER,... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/listener.c | null | null | null | null | null | null | C | 2026-05-04T18:26:36.825389 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
QUIC Listener API and Logic
--*/
#include "precomp.h"
#ifdef QUIC_CLOG
#include "listener.c.clog.h"
#endif
_IRQL_requires_max_(PASSIVE_LEVEL)
void
QuicListenerStopAsync(
_In_ QUIC_LISTENER* Listener
);
BOOLEAN... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/library.c | null | null | null | null | null | null | C | 2026-05-04T18:26:36.827023 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
General library functions
--*/
#include "precomp.h"
#ifdef QUIC_CLOG
#include "library.c.clog.h"
#endif
QUIC_LIBRARY MsQuicLib = { 0 };
QUIC_TRACE_RUNDOWN_CALLBACK QuicTraceRundown;
_IRQL_requires_max_(PASSIVE_LEVEL)... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/lookup.c | null | null | null | null | null | null | C | 2026-05-04T18:26:37.008283 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Lookup tables for connections.
--*/
#include "precomp.h"
#ifdef QUIC_CLOG
#include "lookup.c.clog.h"
#endif
typedef struct QUIC_CACHEALIGN QUIC_PARTITIONED_HASHTABLE {
CXPLAT_DISPATCH_RW_LOCK RwLock;
CXPLAT_HA... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/loss_detection.h | null | null | null | null | null | null | C | 2026-05-04T18:26:37.012525 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
typedef struct QUIC_LOSS_DETECTION {
//
// Number of outstanding **retransmittable** packets.
//
uint32_t PacketsInFlight;
//
// Largest acknowledged packet number.
//
uint64_t LargestAck;
//... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/lookup.h | null | null | null | null | null | null | C | 2026-05-04T18:26:37.027566 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
typedef struct QUIC_PARTITIONED_HASHTABLE QUIC_PARTITIONED_HASHTABLE;
typedef struct QUIC_REMOTE_HASH_ENTRY {
CXPLAT_HASHTABLE_ENTRY Entry;
QUIC_CONNECTION* Connection;
QUIC_ADDR RemoteAddress;
uint8_t RemoteCidL... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/loss_detection.c | null | null | null | null | null | null | C | 2026-05-04T18:26:37.088492 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
This module tracks in-flight packets and determines when they
have been lost or delivered to the peer.
A combination of two similar loss detection algorithms is used:
RACK (time-based reordering threshold) ... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/frame.h | null | null | null | null | null | null | C | 2026-05-04T18:26:37.303128 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
//
// QUIC Transport Error codes defined by the QUIC Transport RFC.
//
#if defined(__cplusplus)
extern "C" {
#endif
//
// An endpoint uses this with CONNECTION_CLOSE to signal that the connection
// is being closed abruptly in t... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/operation.c | null | null | null | null | null | null | C | 2026-05-04T18:26:37.449162 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
An "operation" is a single unit of work for a connection.
Examples:
-Handling an API call
-Handling a timer that fired
-Handling a received packet chain
-Sending a flight of data
An "operation qu... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/mtu_discovery.c | null | null | null | null | null | null | C | 2026-05-04T18:26:37.452259 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
This module handles the MTU discovery logic.
Upon a new path being validated, MTU discovery is started on that path.
This is done by sending a probe packet larger than the current MTU.
If the probe packet is... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/packet.c | null | null | null | null | null | null | C | 2026-05-04T18:26:37.453751 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Packet processing helpers (validation, encoding and tracing).
--*/
#include "precomp.h"
#ifdef QUIC_CLOG
#include "packet.c.clog.h"
#endif
//
// The list of supported QUIC version numbers and associated salts/secrets.
... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/mtu_discovery.h | null | null | null | null | null | null | C | 2026-05-04T18:26:37.465859 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
typedef struct QUIC_MTU_DISCOVERY {
//
// The timestamp that Search Complete was entered.
//
uint64_t SearchCompleteEnterTimeUs;
//
// The maximum MTU allowed by the current path.
//
uint16_t MaxM... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/operation.h | null | null | null | null | null | null | C | 2026-05-04T18:26:37.498932 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
#ifdef QUIC_CLOG
#include "operation.h.clog.h"
#endif
typedef struct QUIC_SEND_REQUEST QUIC_SEND_REQUEST;
//
// For logging.
//
typedef enum QUIC_SCHEDULE_STATE {
QUIC_SCHEDULE_IDLE,
QUIC_SCHEDULE_QUEUED,
QUIC_SCHEDU... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/packet.h | null | null | null | null | null | null | C | 2026-05-04T18:26:37.611496 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
#define CXPLAT_VERSION_SALT_LENGTH 20
#define QUIC_VERSION_RETRY_INTEGRITY_SECRET_LENGTH 32
typedef struct QUIC_VERSION_INFO {
//
// In network byte order.
//
uint32_t Number;
//
// Version specific salt... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/packet_builder.h | null | null | null | null | null | null | C | 2026-05-04T18:26:37.692136 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
//
// All the necessary state for building and sending QUIC packets.
//
typedef struct QUIC_PACKET_BUILDER {
//
// Connection packets are being built for.
//
QUIC_CONNECTION* Connection;
//
// The current... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/packet_builder.c | null | null | null | null | null | null | C | 2026-05-04T18:26:37.692886 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
Packet builder abstracts the logic to build up a chain of UDP datagrams each
of which may consist of multiple QUIC packets. As necessary, it allocates
additional datagrams, adds QUIC packet headers, finalizes the ... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/packet_space.c | null | null | null | null | null | null | C | 2026-05-04T18:26:37.724670 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Abstract:
All the information related to receiving packets in a packet number space at
a given encryption level.
--*/
#include "precomp.h"
#ifdef QUIC_CLOG
#include "packet_space.c.clog.h"
#endif
_IRQL_requires_max_(DISPATCH... |
microsoft/msquic | https://github.com/microsoft/msquic | null | null | null | null | 4,688 | null | null | mit | null | null | null | null | null | null | null | src/core/packet_space.h | null | null | null | null | null | null | C | 2026-05-04T18:26:37.925283 | /*++
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
--*/
typedef enum QUIC_ENCRYPT_LEVEL {
QUIC_ENCRYPT_LEVEL_INITIAL,
QUIC_ENCRYPT_LEVEL_HANDSHAKE,
QUIC_ENCRYPT_LEVEL_1_RTT, // Also used for 0-RTT
QUIC_ENCRYPT_LEVEL_COUNT
} QUIC_ENCRYPT_LEVEL;
QUIC_INLINE
QUIC... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/configuration/procmon_configuration.h | null | null | null | null | null | null | C | 2026-05-04T18:26:40.551265 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/common/printable.h | null | null | null | null | null | null | C | 2026-05-04T18:26:40.570905 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/common/cancellable_message_queue.h | null | null | null | null | null | null | C | 2026-05-04T18:26:40.573233 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/common/event.h | null | null | null | null | null | null | C | 2026-05-04T18:26:40.574735 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/display/column.h | null | null | null | null | null | null | C | 2026-05-04T18:26:40.575891 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/common/telemetry.h | null | null | null | null | null | null | C | 2026-05-04T18:26:40.587857 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/display/event_formatter.h | null | null | null | null | null | null | C | 2026-05-04T18:26:40.590441 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/common/stack_trace.h | null | null | null | null | null | null | C | 2026-05-04T18:26:40.591557 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/common/cli_utils.h | null | null | null | null | null | null | C | 2026-05-04T18:26:40.707188 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/display/headless.h | null | null | null | null | null | null | C | 2026-05-04T18:26:41.203624 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/display/screen_configuration.h | null | null | null | null | null | null | C | 2026-05-04T18:26:41.215539 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/display/screen.h | null | null | null | null | null | null | C | 2026-05-04T18:26:41.216058 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/storage/mock_storage_engine.h | null | null | null | null | null | null | C | 2026-05-04T18:26:41.220728 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/installer.h | null | null | null | null | null | null | C | 2026-05-04T18:26:41.234168 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/storage/sqlite3_storage_engine.h | null | null | null | null | null | null | C | 2026-05-04T18:26:41.235401 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/storage/storage_proxy.h | null | null | null | null | null | null | C | 2026-05-04T18:26:41.272894 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/display/kill_event_formatter.h | null | null | null | null | null | null | C | 2026-05-04T18:26:41.273432 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/storage/storage_engine.h | null | null | null | null | null | null | C | 2026-05-04T18:26:41.286028 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/sym/bcc_elf.h | null | null | null | null | null | null | C | 2026-05-04T18:26:41.328121 | /*
* Copyright (c) 2016 GitHub, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/sym/file_desc.h | null | null | null | null | null | null | C | 2026-05-04T18:26:42.089550 | /*
* Copyright (c) 2017 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/sym/bcc_zip.h | null | null | null | null | null | null | C | 2026-05-04T18:26:42.091390 | /*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appl... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/tracer/ebpf/kern/procmonEBPF_common.h | null | null | null | null | null | null | C | 2026-05-04T18:26:42.092571 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at you... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/tracer/ebpf/ebpf_tracer_engine.h | null | null | null | null | null | null | C | 2026-05-04T18:26:42.093622 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/sym/syms.h | null | null | null | null | null | null | C | 2026-05-04T18:26:42.095638 | /*
* Copyright (c) 2016 GitHub, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/sym/bcc_syms.h | null | null | null | null | null | null | C | 2026-05-04T18:26:42.096995 | /*
* Copyright (c) 2016 GitHub, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/sym/bcc_proc.h | null | null | null | null | null | null | C | 2026-05-04T18:26:42.098228 | /*
* Copyright (c) 2016 GitHub, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/sym/common.h | null | null | null | null | null | null | C | 2026-05-04T18:26:42.099121 | /*
* Copyright (c) 2015 PLUMgrid, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/tracer/ebpf/kern/procmonEBPF_maps.h | null | null | null | null | null | null | C | 2026-05-04T18:26:42.465470 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at you... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/sym/bcc_perf_map.h | null | null | null | null | null | null | C | 2026-05-04T18:26:42.755214 | /*
* Copyright (c) 2016 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/tracer/ebpf/syscall_schema.h | null | null | null | null | null | null | C | 2026-05-04T18:26:42.870324 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/tracer/ebpf/kern/procmonEBPFkern5.3-5.5.c | null | null | null | null | null | null | C | 2026-05-04T18:26:42.873436 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at you... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/tracer/ebpf/raw_ebpf_event.h | null | null | null | null | null | null | C | 2026-05-04T18:26:42.874669 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including wi... |
microsoft/ProcMon-for-Linux | https://github.com/microsoft/ProcMon-for-Linux | null | null | null | null | 4,671 | null | null | mit | null | null | null | null | null | null | null | src/tracer/ebpf/kern/procmonGenericEntry_rawtp.c | null | null | null | null | null | null | C | 2026-05-04T18:26:42.888888 | /*
Procmon-for-Linux
Copyright (c) Microsoft Corporation
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at you... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.