fwapi.h

来自「Siproxd is a proxy/masquerading daemon f」· C头文件 代码 · 共 56 行

H
56
字号
/*    Copyright (C) 2004-2005  Thomas Ries <tries@gmx.net>    This file is part of Siproxd.        Siproxd 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.        Siproxd 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 Siproxd; if not, write to the Free Software    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA *//* $Id: fwapi.h,v 1.3 2005/01/08 10:05:12 hb9xar Exp $ *//* * constants */#define ACT_START_RTP	1	/* action: start RTP stream */#define ACT_STOP_RTP	2	/* action: stop  RTP stream */#define DIR_IN		1	/* direction: incoming	*/#define DIR_OUT		2	/* direction: outgoing	*//* * structure passed to custom firewall control module */typedef struct {   int	action;   int	direction;   struct in_addr local_ipaddr;   int		  local_port;   struct in_addr remote_ipaddr;   int		  remote_port;} fw_ctl_t;/* * Functions that must be present in custom firewall control module. * Siproxd will link against it. */ int custom_fw_control(fw_ctl_t fwdata);

⌨️ 快捷键说明

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