1 Star 0 Fork 0

jx0913/arp-scan

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
error.c 2.16 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* The ARP scanner (arp-scan) is Copyright (C) 2005-2016
* Roy Hills, NTA Monitor Ltd.
*
* This file is part of arp-scan.
*
* arp-scan is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* arp-scan is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with arp-scan. If not, see <http://www.gnu.org/licenses/>.
*
* error.c -- error routines for arp-scan
*
* Author: Roy Hills
* Date: 1 December 2001
*/
#include "arp-scan.h"
int daemon_proc; /* Non-zero if process is a daemon */
/*
* Function to handle fatal system call errors.
*/
void
err_sys(const char *fmt,...) {
va_list ap;
va_start(ap, fmt);
err_print(1, fmt, ap);
va_end(ap);
exit(EXIT_FAILURE);
}
/*
* Function to handle non-fatal system call errors.
*/
void
warn_sys(const char *fmt,...) {
va_list ap;
va_start(ap, fmt);
err_print(1, fmt, ap);
va_end(ap);
}
/*
* Function to handle fatal errors not from system calls.
*/
void
err_msg(const char *fmt,...) {
va_list ap;
va_start(ap, fmt);
err_print(0, fmt, ap);
va_end(ap);
exit(EXIT_FAILURE);
}
/*
* Function to handle non-fatal errors not from system calls.
*/
void
warn_msg(const char *fmt,...) {
va_list ap;
va_start(ap, fmt);
err_print(0, fmt, ap);
va_end(ap);
}
/*
* General error printing function used by all the above
* functions.
*/
void
err_print (int errnoflag, const char *fmt, va_list ap) {
int errno_save;
size_t n;
char buf[MAXLINE];
errno_save=errno;
vsnprintf(buf, MAXLINE, fmt, ap);
n=strlen(buf);
if (errnoflag)
snprintf(buf+n, MAXLINE-n, ": %s", strerror(errno_save));
strlcat(buf, "\n", sizeof(buf));
fflush(stdout); /* In case stdout and stderr are the same */
fputs(buf, stderr);
fflush(stderr);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jx0913/arp-scan.git
[email protected]:jx0913/arp-scan.git
jx0913
arp-scan
arp-scan
master

搜索帮助