📄 util.h.svn-base
字号:
/********************************************************************\ * This program 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 2 of * * the License, or (at your option) any later version. * * * * This program 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 this program; if not, contact: * * * * Free Software Foundation Voice: +1-617-542-5942 * * 59 Temple Place - Suite 330 Fax: +1-617-542-2652 * * Boston, MA 02111-1307, USA gnu@gnu.org * * *\********************************************************************//* $Id$ *//** @file util.h @brief Misc utility functions @author Copyright (C) 2004 Philippe April <papril777@yahoo.com>*/#ifndef _UTIL_H_#define _UTIL_H_#define STATUS_BUF_SIZ 16384/** @brief Execute a shell command */int execute(char *cmd_line, int quiet);struct in_addr *wd_gethostbyname(const char *name);/* @brief Get IP address of an interface */char *get_iface_ip(char *ifname);/* @brief Get MAC address of an interface */char *get_iface_mac(char *ifname);/* @brief Get interface name of default gateway */char *get_ext_iface (void);/* @brief Sets hint that an online action (dns/connect/etc using WAN) succeeded */void mark_online();/* @brief Sets hint that an online action (dns/connect/etc using WAN) failed */void mark_offline();/* @brief Returns a guess (true or false) on whether we're online or not based on previous calls to mark_online and mark_offline */int is_online();/* @brief Sets hint that an auth server online action succeeded */void mark_auth_online();/* @brief Sets hint that an auth server online action failed */void mark_auth_offline();/* @brief Returns a guess (true or false) on whether we're an auth server is online or not based on previous calls to mark_auth_online and mark_auth_offline */int is_auth_online();/* * @brief Creates a human-readable paragraph of the status of wifidog */char * get_status_text();#define LOCK_GHBN() do { \ debug(LOG_DEBUG, "Locking wd_gethostbyname()"); \ pthread_mutex_lock(&ghbn_mutex); \ debug(LOG_DEBUG, "wd_gethostbyname() locked"); \} while (0)#define UNLOCK_GHBN() do { \ debug(LOG_DEBUG, "Unlocking wd_gethostbyname()"); \ pthread_mutex_unlock(&ghbn_mutex); \ debug(LOG_DEBUG, "wd_gethostbyname() unlocked"); \} while (0)#endif /* _UTIL_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -