mirror of
https://github.com/dongdigua/dongdigua.github.io
synced 2024-11-24 20:53:10 +08:00
9 lines
159 B
Bash
Executable File
9 lines
159 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if [ -z $AUTH_TYPE ]; then
|
|
printf "60 \r\n"
|
|
else
|
|
printf "20 text/plain\r\n"
|
|
printf "auth: $AUTH_TYPE\r\nhash: $TLS_CLIENT_HASH\r\n"
|
|
fi
|