I hereby claim:
- I am savetherbtz on github.
- I am savetherbtz (https://keybase.io/savetherbtz) on keybase.
- I have a public key ASCGtsoiMtRWkLHGrOq-_5DL-i1kI5X0R-QwYn6FHG6w-Qo
To claim this, I am signing this object:
#!/bin/sh | |
# | |
# Simple utility to check that all *.crt files match corresponding *.key's | |
# | |
for FILE in *.crt; do | |
CERT="$FILE" | |
KEY="${FILE%crt}key" |
Locality-based Least connection scheduling module for nginx. | |
Based on logic[1] from IPVS lblc module. | |
[1] http://kb.linuxvirtualserver.org/wiki/Locality-Based_Least-Connection_Scheduling | |
Configuration directives: | |
lblc |
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h | |
index 615b20b..12f4c26 100644 | |
--- a/include/net/ip_vs.h | |
+++ b/include/net/ip_vs.h | |
@@ -924,6 +924,7 @@ struct netns_ipvs { | |
int sysctl_nat_icmp_send; | |
int sysctl_pmtu_disc; | |
int sysctl_backup_only; | |
+ int sysctl_tun_src_client_copy; |
#!/bin/bash | |
# | |
# https://www.redhat.com/archives/rhl-list/2007-September/msg03735.html | |
# https://github.com/hiboma/hiboma/blob/master/kernel/net/softnet_stat.md | |
# | |
cmd="${0##*/}" | |
usage() { |
/* | |
* Copyright 2009 Johannes Berg <[email protected]> | |
* Copyright 2010 Luis R. Rodriguez <[email protected]> | |
* | |
* Permission to use, copy, modify, and/or distribute this software for any | |
* purpose with or without fee is hereby granted, provided that the above | |
* copyright notice and this permission notice appear in all copies. | |
* | |
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
#!/bin/bash | |
while read line; do | |
if [ "${line//END}" != "$line" ]; then | |
txt="$txt$line\n" | |
printf -- "$txt" | openssl x509 -subject -issuer -noout | |
txt="" | |
else | |
txt="$txt$line\n" | |
fi | |
done < $@ |
I hereby claim:
To claim this, I am signing this object:
#define _XOPEN_SOURCE 700 | |
#include <signal.h> | |
#include <unistd.h> | |
int main() | |
{ | |
sigset_t set; | |
int status; | |
if (getpid() != 1) return 1; |
/* | |
* IPVS: Source Consistent Hashing scheduling module | |
* | |
* Authors: Jonathan Lee <[email protected]> | |
* | |
* Changes: | |
* | |
*/ | |
#define KMSG_COMPONENT "IPVS" |
/* | |
* Redirect malloc(3) calls to a mmap(2)'ed file. | |
* | |
* Example of usage: | |
* $ cc -shared -o userspaceswap.dylib ./userspaceswap.c && \ | |
* DYLD_FORCE_FLAT_NAMESPACE=1 DYLD_INSERT_LIBRARIES=./userspaceswap.dylib ffmpeg | |
*/ | |
#include <dlfcn.h> | |
#include <errno.h> |