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
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/esis.c
null
null
null
null
null
null
C
2026-05-04T19:38:04.336692
/* esis.c -- ES-IS (End System to Intermediate System) Protocol * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" extern ArkimeConfig_t config; LOCAL int esisMProtocol; LOCAL int typeField; /******************************************************************************/ LOCAL void esis_create...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/esp.c
null
null
null
null
null
null
C
2026-05-04T19:38:04.338116
/* esp.c * * Copyright 2019 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" #include "patricia.h" #include <inttypes.h> #include <arpa/inet.h> #include <errno.h> /******************************************************************************/ extern ArkimeConfig_t ...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/erspan.c
null
null
null
null
null
null
C
2026-05-04T19:38:04.426219
/* Copyright 2019 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" extern ArkimeConfig_t config; /******************************************************************************/ LOCAL ArkimePacketRC erspan_packet_enqueue(ArkimePacketBatch_t *batch, ArkimePacket_t ...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/gre.c
null
null
null
null
null
null
C
2026-05-04T19:38:04.765725
/* gre.c * * Copyright 2019 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" #include "patricia.h" #include <inttypes.h> #include <arpa/inet.h> #include <errno.h> /******************************************************************************/ extern ArkimeConfig_t ...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/gtp.c
null
null
null
null
null
null
C
2026-05-04T19:38:04.773927
/* Copyright 2019 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" #include <net/ethernet.h> extern ArkimeConfig_t config; /******************************************************************************/ SUPPRESS_ALIGNMENT LOCAL ArkimePacketRC gtp_packet_enqueue(A...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/geneve.c
null
null
null
null
null
null
C
2026-05-04T19:38:04.777384
/* Copyright 2019 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" #include <net/ethernet.h> extern ArkimeConfig_t config; /******************************************************************************/ SUPPRESS_ALIGNMENT LOCAL ArkimePacketRC geneve_packet_enqueu...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/http2.c
null
null
null
null
null
null
C
2026-05-04T19:38:04.817654
/* Copyright 2012-2017 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * https://http2.github.io/http2-spec/ */ #include "arkime.h" #include <sys/socket.h> #include <arpa/inet.h> #include "nghttp2/nghttp2.h" //#define HTTPDEBUG 1 #define MAX_URL_LENGTH 4096 #define MAX_HTTP2_SIZE 20000 #d...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/http.c
null
null
null
null
null
null
C
2026-05-04T19:38:04.819637
/* Copyright 2012-2017 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" #include <sys/socket.h> #include <arpa/inet.h> //#define HTTPDEBUG 1 #define MAX_URL_LENGTH 4096 #define HTTP_FIELD_MAX 8192 #define HTTP_GSTR_APPEND(gs, at, length) do { \ if ((gs)->len < HTTP_F...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/irc.c
null
null
null
null
null
null
C
2026-05-04T19:38:05.181514
/* Copyright 2012-2017 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" extern ArkimeConfig_t config; typedef struct { int ircState; } IRCInfo_t; LOCAL int channelsField; LOCAL int nickField; /***************************************************************...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/imap.c
null
null
null
null
null
null
C
2026-05-04T19:38:05.182900
/* Copyright 2012-2017 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Basic IMAP parser - parses email addresses from FETCH responses */ #include "arkime.h" #include <ctype.h> extern ArkimeConfig_t config; LOCAL int srcField; LOCAL int dstField; LOCAL int subjectField; LOCAL int ...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/igmp.c
null
null
null
null
null
null
C
2026-05-04T19:38:05.184389
/* Copyright 2019 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" //#define IGMPDEBUG 1 extern ArkimeConfig_t config; LOCAL int igmpMProtocol; /******************************************************************************/ LOCAL void igmp_create_sessionid(uint...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/isakmp.c
null
null
null
null
null
null
C
2026-05-04T19:38:05.263046
/* Copyright 2026 Andy Wick. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" /* * IKE (Internet Key Exchange) - RFC 2409 (IKEv1), RFC 7296 (IKEv2) * * ISAKMP Header (28 bytes): * Bytes 0-7: Initiator SPI * Bytes 8-15: Responder SPI * Byte 16: Next Payload * ...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/isis.c
null
null
null
null
null
null
C
2026-05-04T19:38:05.505286
/* Copyright 2019 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" //#define ISISDEBUG 1 extern ArkimeConfig_t config; LOCAL int isisMProtocol; LOCAL int typeField; /******************************************************************************/ LOCAL void isis_...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/krb5.c
null
null
null
null
null
null
C
2026-05-04T19:38:05.522343
/* Copyright 2012-2017 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" //#define KRB5_DEBUG 1 extern ArkimeConfig_t config; LOCAL int realmField; LOCAL int cnameField; LOCAL int snameField; LOCAL int etypeField; LOCAL int errorCodeField; // Encryption type...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/ldap.c
null
null
null
null
null
null
C
2026-05-04T19:38:05.522918
/* Copyright 2012-2017 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" extern ArkimeConfig_t config; LOCAL int bindNameField; LOCAL int authTypeField; /******************************************************************************/ LOCAL void ldap_process(Arki...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/lldp.c
null
null
null
null
null
null
C
2026-05-04T19:38:05.542513
/* Copyright 2019 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" //#define LLDPDEBUG 1 extern ArkimeConfig_t config; LOCAL int lldpMProtocol; /******************************************************************************/ LOCAL void lldp_create_sessionid(uint...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/m3ua.c
null
null
null
null
null
null
C
2026-05-04T19:38:05.543014
/* m3ua.c - M2UA/M3UA parser for SS7/SIGTRAN * * Handles: * - M2UA (SCTP protocol ID 2): MTP2 User Adaptation * - M3UA (SCTP protocol ID 3): MTP3 User Adaptation * * Detects upper layer protocols based on MTP3 Service Indicator: * - SI=3 (SCCP) -> Calls sub-parsers (tcap -> camel/map) * - SI=5 (ISUP) -> Marks a...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/modbus.c
null
null
null
null
null
null
C
2026-05-04T19:38:05.916537
/* modbus.c * * Copyright 2020 Sqooba AG. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include <string.h> #include <ctype.h> #include "arkimeconfig.h" #include "arkime.h" extern ArkimeConfig_t config; LOCAL int unitIdField; LOCAL int transactionIdField; LOCAL int protocolIdField; LO...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/misc.c
null
null
null
null
null
null
C
2026-05-04T19:38:05.919376
/* Copyright 2012-2017 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" extern ArkimeConfig_t config; LOCAL int userField; /******************************************************************************/ /*********************************************************...
arkime/arkime
https://github.com/arkime/arkime
null
null
null
null
7,366
null
null
apache-2.0
null
null
null
null
null
null
null
capture/parsers/icmp.c
null
null
null
null
null
null
C
2026-05-04T19:38:10.016674
/* icmp.c * * Copyright 2019 AOL Inc. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 */ #include "arkime.h" #include "patricia.h" #include <inttypes.h> #include <arpa/inet.h> #include <errno.h> /******************************************************************************/ extern ArkimeConfig_t ...
stanfordnlp/GloVe
https://github.com/stanfordnlp/GloVe
null
null
null
null
7,217
null
null
apache-2.0
null
null
null
null
null
null
null
src/common.c
null
null
null
null
null
null
C
2026-05-04T19:38:13.305498
// Common code for cooccur.c, vocab_count.c, // glove.c and shuffle.c // // GloVe: Global Vectors for Word Representation // Copyright (c) 2014 The Board of Trustees of // The Leland Stanford Junior University. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may ...
stanfordnlp/GloVe
https://github.com/stanfordnlp/GloVe
null
null
null
null
7,217
null
null
apache-2.0
null
null
null
null
null
null
null
src/vocab_count.c
null
null
null
null
null
null
C
2026-05-04T19:38:13.380232
// Tool to extract unigram counts // // GloVe: Global Vectors for Word Representation // Copyright (c) 2014 The Board of Trustees of // The Leland Stanford Junior University. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in complianc...
stanfordnlp/GloVe
https://github.com/stanfordnlp/GloVe
null
null
null
null
7,217
null
null
apache-2.0
null
null
null
null
null
null
null
src/shuffle.c
null
null
null
null
null
null
C
2026-05-04T19:38:13.383150
// Tool to shuffle entries of word-word cooccurrence files // // Copyright (c) 2014 The Board of Trustees of // The Leland Stanford Junior University. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // Y...
stanfordnlp/GloVe
https://github.com/stanfordnlp/GloVe
null
null
null
null
7,217
null
null
apache-2.0
null
null
null
null
null
null
null
src/common.h
null
null
null
null
null
null
C
2026-05-04T19:38:13.387707
#ifndef COMMON_H #define COMMON_H // Common code for cooccur.c, vocab_count.c, // glove.c and shuffle.c // // GloVe: Global Vectors for Word Representation // Copyright (c) 2014 The Board of Trustees of // The Leland Stanford Junior University. All Rights Reserved. // // Licensed under the Apache License, Versio...
stanfordnlp/GloVe
https://github.com/stanfordnlp/GloVe
null
null
null
null
7,217
null
null
apache-2.0
null
null
null
null
null
null
null
src/glove.c
null
null
null
null
null
null
C
2026-05-04T19:38:13.390114
// GloVe: Global Vectors for Word Representation // // Copyright (c) 2014 The Board of Trustees of // The Leland Stanford Junior University. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obt...
stanfordnlp/GloVe
https://github.com/stanfordnlp/GloVe
null
null
null
null
7,217
null
null
apache-2.0
null
null
null
null
null
null
null
src/cooccur.c
null
null
null
null
null
null
C
2026-05-04T19:38:13.391565
// Tool to calculate word-word cooccurrence statistics // // Copyright (c) 2014, 2018 The Board of Trustees of // The Leland Stanford Junior University. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // ...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/cpu/test05/main.c
null
null
null
null
null
null
C
2026-05-04T19:38:16.432131
#include <stdio.h> #include <unistd.h> #include <sys/time.h> #include <pthread.h> int pipes[20][3]; char buffer[10]; int running = 1; void inti() { int i =20; while(i--) { if(pipe(pipes[i])<0) exit(1); pipes[i][2] = i; } } void distroy() { int i =20; while(i--) { close(pipes[i][0]); close(pipes[i][...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/cpu/test01/likely.c
null
null
null
null
null
null
C
2026-05-04T19:38:16.433300
# include <stdio.h> #define likely(x) __builtin_expect(!!(x), 1) #define unlikely(x) __builtin_expect(!!(x), 0) int main(int argc, char *argv[]) { int n; n = atoi (argv[1]); if (likely(n == 10)){ n = n + 2; } else { n = n - 2; } printf("%d\n", n); return 0; }
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/cpu/test11/main.c
null
null
null
null
null
null
C
2026-05-04T19:38:16.437087
#include <stdio.h> #include <stdlib.h> #include <sys/ptrace.h> #include <sys/types.h> #include <sys/wait.h> #include <unistd.h> #include <signal.h> #include <errno.h> #include <string.h> #include <sys/reg.h> void handle_syscall(pid_t pid) { long syscall_number; char *syscall_name = NULL; // 读取系统调用号 syscall_number...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/cpu/test09/main.c
null
null
null
null
null
null
C
2026-05-04T19:38:16.438240
#include <stdio.h> #include <stdlib.h> #include <math.h> void caculate(){ for (i = 0; i < 10000000; i++) { } } void funcE(){ caculate(); } void funcD(){ funcE(); } void funcA(){ funcD(); } void funcB(){ caculate(); } void funcC(){ caculate(); } int main() { int i; for (i = 0; ...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/cpu/test01/unlikely.c
null
null
null
null
null
null
C
2026-05-04T19:38:16.439068
# include <stdio.h> #define likely(x) __builtin_expect(!!(x), 1) #define unlikely(x) __builtin_expect(!!(x), 0) int main(int argc, char *argv[]) { int n; n = atoi (argv[1]); if (unlikely(n == 10)){ n = n + 2; } else { n = n - 2; } printf("%d\n", n); return 0; }
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/cpu/test03/main.c
null
null
null
null
null
null
C
2026-05-04T19:38:16.441492
#include <stdio.h> #include <stdlib.h> #include <sys/time.h> #include <time.h> #include <sched.h> #include <sys/types.h> #include <unistd.h> //pipe() int main() { int x, i, fd[2], p[2]; char send = 's'; char receive; pipe(fd); pipe(p); struct timeval tv; ...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/cpu/test02/main.c
null
null
null
null
null
null
C
2026-05-04T19:38:16.442066
#include <fcntl.h> #include <stdio.h> #include <stdlib.h> int main() { char c; int in; int i; in = open("in.txt", O_RDONLY); for(i=0; i<100; i++){ read(in,&c,1); } return 0; }
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/cpu/test10/main.c
null
null
null
null
null
null
C
2026-05-04T19:38:16.443764
#include <stdio.h> #include "libadd.h" int main(void) { int ret = add(2,3); printf("C调用Go函数2+3=%d", ret); return 0; }
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/cpu/test08/main.c
null
null
null
null
null
null
C
2026-05-04T19:38:16.444977
#include <stdio.h> #include <string.h> #include <stdint.h> #include <unistd.h> #include <sys/syscall.h> #include <linux/perf_event.h> // 封装perf_event_open系统调用 int perf_event_open(struct perf_event_attr *attr, pid_t pid, int cpu, int group_fd, unsigned long flags) { return syscall(__NR_perf_event_open, attr,pid, c...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/ebpf/test01/hello.c
null
null
null
null
null
null
C
2026-05-04T19:38:16.446242
#include <stdio.h> #include <stdlib.h> #include <bpf/libbpf.h> #include "hello_kprobe.skel.h" static int libbpf_print_fn(enum libbpf_print_level level, const char *format, va_list args) { return vfprintf(stderr, format, args); } int main(int argc, char **argv) { struct hello_kprobe_bpf *skel; int err; ...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/memory/test02/clock.h
null
null
null
null
null
null
C
2026-05-04T19:38:17.185015
/* Routines for using cycle counter */ /* Start the counter */ void start_counter(); /* Get # cycles since counter started */ double get_counter(); void start_timer(); long int get_timer(); /* Measure overhead for counter */ double ovhd(); /* Determine clock rate of processor */ double mhz(int verbose); /* Dete...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/memory/test01/clock.h
null
null
null
null
null
null
C
2026-05-04T19:38:17.185972
/* Routines for using cycle counter */ /* Start the counter */ void start_counter(); /* Get # cycles since counter started */ double get_counter(); void start_timer(); long int get_timer(); /* Measure overhead for counter */ double ovhd(); /* Determine clock rate of processor */ double mhz(int verbose); /* Dete...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/ebpf/test01/hello_kprobe.bpf.c
null
null
null
null
null
null
C
2026-05-04T19:38:17.190222
#include <linux/bpf.h> #include <bpf/bpf_helpers.h> // 定义一个打印信息的函数 SEC("kprobe/handle_mm_fault") int bpf_probe_handle_mm_fault() { // 打印一条消息到内核调试日志 bpf_printk("Hello, World from kprobe!\n"); return 0; } char _license[] SEC("license") = "GPL";
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/network/test02/c/server.c
null
null
null
null
null
null
C
2026-05-04T19:38:17.191213
#include <arpa/inet.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_CONNECTION_NUM 1100000 int main(int argc, char *argv[]) { char ip[16]; int lisFd, conFd, port; struct sockaddr_in servAddr; if(argc != 3) { printf("\n Usage: %s <server ip> <server port>\n", arg...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/memory/test02/clock.c
null
null
null
null
null
null
C
2026-05-04T19:38:17.201292
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/times.h> #include "clock.h" #include <time.h> /* Routines for using cycle counter */ /* Detect whether running on Alpha */ #ifdef __alpha #define IS_ALPHA 1 #else #define IS_ALPHA 0 #endif /* Detect whether running on x86 */ #ifdef __i386__ #d...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/memory/test01/clock.c
null
null
null
null
null
null
C
2026-05-04T19:38:17.214064
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/times.h> #include "clock.h" #include <time.h> /* Routines for using cycle counter */ /* Detect whether running on Alpha */ #ifdef __alpha #define IS_ALPHA 1 #else #define IS_ALPHA 0 #endif /* Detect whether running on x86 */ #ifdef __i386__ #d...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/memory/test01/main.c
null
null
null
null
null
null
C
2026-05-04T19:38:17.226007
#include <stdlib.h> #include <stdio.h> #include "clock.h" #define MINBYTES (1 << 11) // 内存测试区域从 2KB 开始 #define MAXBYTES (1 << 26) // 最大到 64 MB #define MAXSTRIDE 64 // 循环步长从 1 到 64 字节 #define MAXELEMS MAXBYTES/sizeof(double) double data[MAXELEMS]; // 测试用的全局内存数组 void init_data(double *data, int n); vo...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/network/test02/c/client.c
null
null
null
null
null
null
C
2026-05-04T19:38:17.226460
#include <netinet/in.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <arpa/inet.h> #define MAX_CONNECTION_NUM 50000 int buildConnect(const char *lIp, const char *sIp, int sPort) { int skFd; if((skFd = socket(AF_INET, SOCK_STREAM, 0)) < 0) { printf("\n E...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/memory/test02/main.c
null
null
null
null
null
null
C
2026-05-04T19:38:17.255340
#include <stdlib.h> #include <stdio.h> #include "clock.h" #define MINBYTES (1 << 11) // 内存测试区域从 2KB 开始 #define MAXBYTES (1 << 26) // 最大到 64 MB #define MAXSTRIDE 64 // 循环步长从 1 到 64 字节 #define MAXELEMS MAXBYTES/sizeof(double) double data[MAXELEMS]; // 测试用的全局内存数组 void init_data(double *data, int n); vo...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/network/test04/main.c
null
null
null
null
null
null
C
2026-05-04T19:38:18.242251
#include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <sys/socket.h> #include <sys/types.h> #include <linux/if_ether.h> #include <linux/in.h> #define BUFFER_MAX 2048 typedef int int32; typedef unsigned int u_int32; typedef unsigned char u_char; typedef unsigned short u_short; //参考内核 struct ethhdr 定义 (i...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/network/test03/c/client.c
null
null
null
null
null
null
C
2026-05-04T19:38:18.242732
#include <netinet/in.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <arpa/inet.h> #define MAX_CONNECTION_NUM 50000 int buildConnect(const char *sIp, int sPort) { int skFd; if((skFd = socket(AF_INET, SOCK_STREAM, 0)) < 0) { printf("\n Error : Could not...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/network/test08/server.c
null
null
null
null
null
null
C
2026-05-04T19:38:18.258869
#include <arpa/inet.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_CONNECTION_NUM 1100000 int main(int argc, char *argv[]) { char ip[16]; int lisFd, conFd, port; struct sockaddr_in servAddr; pid_t pid; if(argc != 3) { printf("\n Usage: %s <server ip> <serv...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/network/test03/c/server.c
null
null
null
null
null
null
C
2026-05-04T19:38:18.259797
#include <arpa/inet.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_CONNECTION_NUM 1100000 int main(int argc, char *argv[]) { char ip[16]; int lisFd, conFd, port; struct sockaddr_in servAddr; if(argc != 3) { printf("\n Usage: %s <server ip> <server port>\n", arg...
yanfeizhang/coder-kung-fu
https://github.com/yanfeizhang/coder-kung-fu
null
null
null
null
6,786
null
null
apache-2.0
null
null
null
null
null
null
null
tests/network/test08/client.c
null
null
null
null
null
null
C
2026-05-04T19:38:19.741363
#include <netinet/in.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <arpa/inet.h> #define MAX_CONNECTION_NUM 100 int buildConnect(const char *sIp, int sPort) { int skFd; if((skFd = socket(AF_INET, SOCK_STREAM, 0)) < 0) { printf("\n Error : Could not cr...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/fifo.h
null
null
null
null
null
null
C
2026-05-04T19:38:22.532869
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Laxmikant Rashinkar 2004-2014 * * 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/L...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/arch.h
null
null
null
null
null
null
C
2026-05-04T19:38:22.587981
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/file.h
null
null
null
null
null
null
C
2026-05-04T19:38:22.621170
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/base64.c
null
null
null
null
null
null
C
2026-05-04T19:38:22.639848
/** * Copyright (C) 2022 Matt Burt, all xrdp contributors * * 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 ap...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/fifo.c
null
null
null
null
null
null
C
2026-05-04T19:38:22.643321
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Matt Burt 2023 * * 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 * ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/file.c
null
null
null
null
null
null
C
2026-05-04T19:38:22.653326
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/defines.h
null
null
null
null
null
null
C
2026-05-04T19:38:22.657879
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/base64.h
null
null
null
null
null
null
C
2026-05-04T19:38:22.662511
/** * Copyright (C) 2021 Koichiro Iwao, all xrdp contributors * * 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 b...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/channel_defs.h
null
null
null
null
null
null
C
2026-05-04T19:38:22.679353
/** * Copyright (C) 2024 Matt Burt, all xrdp contributors * * 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 ap...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/guid.c
null
null
null
null
null
null
C
2026-05-04T19:38:22.701931
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) 2021 Matt Burt, all xrdp contributors * * 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/li...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/guid.h
null
null
null
null
null
null
C
2026-05-04T19:38:23.512756
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2021 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/list.h
null
null
null
null
null
null
C
2026-05-04T19:38:23.630875
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/ms-erref.h
null
null
null
null
null
null
C
2026-05-04T19:38:23.696992
/** * xrdp: A Remote Desktop Protocol server. * * MS-ERREF : Definitions from [MS-ERREF] * * 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/LICENS...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/ms-fscc.h
null
null
null
null
null
null
C
2026-05-04T19:38:23.718044
/** * xrdp: A Remote Desktop Protocol server. * * MS-FSCC : Definitions from [MS-FSCC] * * 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-...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/log.c
null
null
null
null
null
null
C
2026-05-04T19:38:23.719578
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/ms-rdpbcgr.h
null
null
null
null
null
null
C
2026-05-04T19:38:23.732906
/** * xrdp: A Remote Desktop Protocol server. * * MS-RDPBCGR : Definitions from [MS-RDPBCGR] * * 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/LI...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/list.c
null
null
null
null
null
null
C
2026-05-04T19:38:23.800331
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/ms-rdpeclip.h
null
null
null
null
null
null
C
2026-05-04T19:38:24.246624
/** * xrdp: A Remote Desktop Protocol server. * * MS-RDPECLIP : Definitions from [MS-RDPECLIP] * * 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/...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/ms-rdpedisp.h
null
null
null
null
null
null
C
2026-05-04T19:38:24.389338
/** * xrdp: A Remote Desktop Protocol server. * * MS-RDPEDISP : Definitions from [MS-RDPEDISP] * * 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/...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/list16.c
null
null
null
null
null
null
C
2026-05-04T19:38:24.389855
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/ms-rdperp.h
null
null
null
null
null
null
C
2026-05-04T19:38:24.487320
/** * xrdp: A Remote Desktop Protocol server. * * MS-RDPERP : Definitions from [MS-RDPERP] * * 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/LICE...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/ms-rdpefs.h
null
null
null
null
null
null
C
2026-05-04T19:38:24.505604
/** * xrdp: A Remote Desktop Protocol server. * * MS-RDPEFS : Definitions from [MS-RDPEFS] * * 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/LICE...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/ms-rdpegdi.h
null
null
null
null
null
null
C
2026-05-04T19:38:24.506715
/** * xrdp: A Remote Desktop Protocol server. * * MS-RDPEGDI : Definitions from [MS-RDPEGDI] * * 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/LI...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/log.h
null
null
null
null
null
null
C
2026-05-04T19:38:24.698381
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/ms-rdpele.h
null
null
null
null
null
null
C
2026-05-04T19:38:24.768189
/** * xrdp: A Remote Desktop Protocol server. * * MS-RDPELE : Definitions from [MS-RDPELE] * * 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/LICE...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/ms-smb2.h
null
null
null
null
null
null
C
2026-05-04T19:38:24.768728
/** * xrdp: A Remote Desktop Protocol server. * * MS-SMB2 : Definitions from [MS-SMB2] * * 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-...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/list16.h
null
null
null
null
null
null
C
2026-05-04T19:38:24.789151
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/os_calls.h
null
null
null
null
null
null
C
2026-05-04T19:38:25.157925
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/pixman-region.c
null
null
null
null
null
null
C
2026-05-04T19:38:25.161287
/* * Copyright 1987, 1988, 1989, 1998 The Open Group * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that * the above copyright notice appear in all copies and that both that * copyright notice and this permis...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/parse.c
null
null
null
null
null
null
C
2026-05-04T19:38:25.230925
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) 2021 Matt Burt * * 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 * ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/pixman-region16.c
null
null
null
null
null
null
C
2026-05-04T19:38:25.238410
/* * Copyright © 2008 Red Hat, Inc. * * Permission to use, copy, modify, distribute, and sell this software * and its documentation for any purpose is hereby granted without * fee, provided that the above copyright notice appear in all copies * and that both that copyright notice and this permission notice * app...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/parse.h
null
null
null
null
null
null
C
2026-05-04T19:38:25.239118
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/rail.h
null
null
null
null
null
null
C
2026-05-04T19:38:25.290053
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2012-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/pixman-region.h
null
null
null
null
null
null
C
2026-05-04T19:38:25.327153
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2016 * * 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 * *...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/scancode.c
null
null
null
null
null
null
C
2026-05-04T19:38:25.369959
/** * Copyright (C) 2022 Matt Burt, all xrdp contributors * * 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 ap...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/set_int.c
null
null
null
null
null
null
C
2026-05-04T19:38:25.390881
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2021 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/scancode.h
null
null
null
null
null
null
C
2026-05-04T19:38:25.402333
/** * Copyright (C) 2024 Matt Burt, all xrdp contributors * * 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 ap...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/set_int.h
null
null
null
null
null
null
C
2026-05-04T19:38:25.789964
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2021 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/ssl_calls.h
null
null
null
null
null
null
C
2026-05-04T19:38:25.812479
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * Copyright (C) Idan Freiberg 2013-2014 * * 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 * * ht...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/ssl_calls.c
null
null
null
null
null
null
C
2026-05-04T19:38:25.827609
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * Copyright (C) Idan Freiberg 2013-2014 * * 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 * * ht...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/thread_calls.c
null
null
null
null
null
null
C
2026-05-04T19:38:25.848906
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/string_calls.c
null
null
null
null
null
null
C
2026-05-04T19:38:25.849806
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2020 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/string_calls.h
null
null
null
null
null
null
C
2026-05-04T19:38:25.850444
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2020 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/thread_calls.h
null
null
null
null
null
null
C
2026-05-04T19:38:25.961057
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/trans.c
null
null
null
null
null
null
C
2026-05-04T19:38:26.004272
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/timers.c
null
null
null
null
null
null
C
2026-05-04T19:38:26.008239
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2025 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/timers.h
null
null
null
null
null
null
C
2026-05-04T19:38:26.008701
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2025 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/unicode_defines.h
null
null
null
null
null
null
C
2026-05-04T19:38:26.716588
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2023 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/trans.h
null
null
null
null
null
null
C
2026-05-04T19:38:26.739670
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...
neutrinolabs/xrdp
https://github.com/neutrinolabs/xrdp
null
null
null
null
6,605
null
null
apache-2.0
null
null
null
null
null
null
null
common/xrdp_client_info.h
null
null
null
null
null
null
C
2026-05-04T19:38:28.180197
/** * xrdp: A Remote Desktop Protocol server. * * Copyright (C) Jay Sorg 2004-2014 * * 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 ...