forceunload.c
来自「radius协议源码÷The Radius Stack will connect」· C语言 代码 · 共 21 行
C
21 行
#include <sys/types.h>#include <stdio.h>#include <stdlib.h>#include <strings.h>#include <sys/ioctl.h>#include <unistd.h>#include <fcntl.h>#include <asm/errno.h>#include "ixjuser.h"int main(int argc, char *argv[]){ int ixj; ixj = open("/dev/ixj0", O_RDWR|O_NONBLOCK); ioctl(ixj, IXJCTL_MODRESET); close(ixj);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?