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

📄 setconsole.c

📁 我实现的一个基于零拷贝技术高速捕包的原型代码
💻 C
字号:
/*
 * setconsole.c -- choose a console to receive kernel messages
 *
 * Only works with 1.3.43 and newer. Otherwise returns "invalid argument".
 * Tested with 2.0 on the x86, Sparc and Alpha
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <sys/ioctl.h>

int main(int argc, char **argv)
{
    char bytes[2] = {11,0}; /* 11 is the TIOCLINUX cmd number */

    if (argc==2)
        bytes[1] = atoi(argv[1]); /* the chosen console */
    else
    {
        fprintf(stderr, "%s: need a single arg\n",argv[0]);
        exit(1);
    }
    if (ioctl(STDIN_FILENO, TIOCLINUX, bytes)<0)
    {    /* use stdin */
        fprintf(stderr,"%s: ioctl(stdin, TIOCLINUX): %s\n",
                argv[0], strerror(errno));
        exit(1);
    }
    exit(0);
}

⌨️ 快捷键说明

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