1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-15 17:47:09 +00:00
conky/src/tcp-portmon.h
Nikolas Garofil 13188c8b11 Bugfix: memory and thread-deleting problems
This patch is the C version of a32d9e41a4
(from the master branch).
2010-05-05 18:57:27 +02:00

49 lines
1.5 KiB
C

/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
*
* tcp-portmon.h - libtcp-portmon hooks protoypes
*
* Copyright (C) 2008 Phil Sutter <Phil@nwl.cc>
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
* $Id$
*
*/
#ifndef _TCP_PORTMON_H
#define _TCP_PORTMON_H
#include "libtcp-portmon.h"
struct tcp_port_monitor_data {
/* starting port to monitor */
in_port_t port_range_begin;
/* ending port to monitor */
in_port_t port_range_end;
/* enum from libtcp-portmon.h, e.g. COUNT, etc. */
int item;
/* 0 to n-1 connections. */
int connection_index;
};
/* forward declare to make gcc happy */
struct text_object;
int tcp_portmon_init(struct text_object *, const char *);
int tcp_portmon_action(struct text_object *, char *, int);
int tcp_portmon_update(void);
int tcp_portmon_clear(void);
int tcp_portmon_set_max_connections(int);
void tcp_portmon_free(struct text_object *);
#endif /* _TCP_PORTMON_H */