This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Instrument Plugins: | |
https://user-images.githubusercontent.com/4927823/85950622-e5cff480-b998-11ea-8689-b41ea1195475.PNG | |
My Presets: | |
https://user-images.githubusercontent.com/4927823/85950692-42cbaa80-b999-11ea-8704-1be8d0044744.PNG | |
Loading demos: | |
https://user-images.githubusercontent.com/4927823/85950716-76a6d000-b999-11ea-8b02-9ff2f0418f56.PNG |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Public domain | |
* | |
* BSD socket emulation code for Winsock2 | |
* File IO compatibility shims | |
* Brent Cook <[email protected]> | |
* Kinichiro Inoguchi <[email protected]> | |
*/ | |
#define NO_REDEF_POSIX_FUNCTIONS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
my $infile = $ARGV[0]; | |
my $num, $comment, $encoding, $input, $output; | |
my $inlen, $outlen, $validlen; | |
open(IN, "< $infile") || die "open"; | |
$num = 0; | |
while (<IN>) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* mttest.c */ | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <errno.h> | |
#ifndef _WIN32 | |
#include <pthread.h> | |
#else | |
#include <windows.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <err.h> | |
#include <fcntl.h> | |
#include <unistd.h> | |
#define FILENAME "pwrite_pread.dat" | |
void test_pwrite() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# ocsptest.sh - test script | |
# | |
openssl_bin=/usr/local/bin/openssl | |
function section_message { | |
echo "" | |
echo "#---------#---------#---------#---------#---------#---------#---------#--------" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <time.h> | |
#include <sys/time.h> | |
#include <openssl/bio.h> | |
#include <openssl/ssl.h> | |
#include <tls.h> | |
#include "tls_internal.h" | |
#define TLS_DEBUG_LOG_LEVEL_NONE 0 | |
#define TLS_DEBUG_LOG_LEVEL_MSG_ONLY 1 | |
#define TLS_DEBUG_LOG_LEVEL_MSG_WITH_DUMP 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hello libtls - libressl libtls API sample program |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This script fixes fuzzing caused by change of image: -> image::. | |
Search "#. type: Target for macro image" or | |
"#. type: Named 'alt' AttributeList argument for macro 'image'" | |
from po file, and set proper string to msgstr. | |
Usage: | |
image_macro.pl <lang> | |
To run: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
openssl_bin=../apps/openssl/.libs/openssl | |
function section_message { | |
echo "" | |
echo "#---------#---------#---------#---------#---------#---------#---------#--------" | |
echo "===" | |
echo "=== (Section) $1 `date +'%Y/%m/%d %H:%M:%S'`" | |
echo "===" |
NewerOlder