Fix whitespace throughout.
[fwd] / fw.h
CommitLineData
e82f7154 1/* -*-c-*-
2 *
e82f7154 3 * Main header file for port forwarder
4 *
61e3dbdf 5 * (c) 1999 Straylight/Edgeware
e82f7154 6 */
7
206212ca 8/*----- Licensing notice --------------------------------------------------*
e82f7154 9 *
10 * This file is part of the `fw' port forwarder.
11 *
12 * `fw' is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
206212ca 16 *
e82f7154 17 * `fw' is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
206212ca 21 *
e82f7154 22 * You should have received a copy of the GNU General Public License
23 * along with `fw'; if not, write to the Free Software Foundation,
24 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 */
26
e82f7154 27#ifndef FW_H
28#define FW_H
29
30#ifdef __cplusplus
31 extern "C" {
32#endif
33
34/*----- Header files ------------------------------------------------------*/
35
61e3dbdf 36#include <time.h>
37#include <fcntl.h>
e82f7154 38#include <mLib/sel.h>
39
40/*----- Global variables --------------------------------------------------*/
41
42extern sel_state *sel;
4fe31371 43
61e3dbdf 44/*----- Functions provided ------------------------------------------------*/
45
46/* --- @fw_log@ --- *
47 *
48 * Arguments: @time_t t@ = when the connection occurred or (@-1@)
49 * @const char *fmt@ = format string to fill in
50 * @...@ = other arguments
51 *
52 * Returns: ---
53 *
54 * Use: Logs a connection.
55 */
56
57extern void fw_log(time_t /*t*/, const char */*fmt*/, ...);
58
59/* --- @fw_inc@, @fw_dec@ --- *
60 *
61 * Arguments: ---
62 *
63 * Returns: ---
64 *
65 * Use: Increments or decrements the active thing count. `fw' won't
66 * quit while there are active things.
67 */
68
69extern void fw_inc(void);
70extern void fw_dec(void);
e82f7154 71
72/*----- That's all, folks -------------------------------------------------*/
73
74#ifdef __cplusplus
75 }
76#endif
77
78#endif