⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 build

📁 the open vpn source code in linux
💻
字号:
#!/bin/sh## Build an OpenVPN plugin module on *nix.  The argument should# be the base name of the C source file (without the .c).## This directory is where we will look for openvpn-plugin.hINCLUDE="-I../.."CC_FLAGS="-O2 -Wall"gcc $CC_FLAGS -fPIC -c $INCLUDE $1.c && \gcc -fPIC -shared -Wl,-soname,$1.so -o $1.so $1.o -lc

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -