mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-15 17:47:09 +00:00
102 lines
3.6 KiB
C
102 lines
3.6 KiB
C
/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
|
|
* vim: ts=4 sw=4 noet ai cindent syntax=c
|
|
*
|
|
* Conky, a system monitor, based on torsmo
|
|
*
|
|
* Any original torsmo code is licensed under the BSD license
|
|
*
|
|
* All code written since the fork of torsmo is licensed under the GPL
|
|
*
|
|
* Please see COPYING for details
|
|
*
|
|
* Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
|
|
* Copyright (c) 2005-2009 Brenden Matthews, Philip Kovacs, et. al.
|
|
* (see AUTHORS)
|
|
* All rights reserved.
|
|
*
|
|
* 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/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef _NET_STAT_H
|
|
#define _NET_STAT_H
|
|
|
|
#include <sys/socket.h> /* struct sockaddr */
|
|
|
|
struct net_stat {
|
|
char *dev;
|
|
int up;
|
|
long long last_read_recv, last_read_trans;
|
|
long long recv, trans;
|
|
double recv_speed, trans_speed;
|
|
struct sockaddr addr;
|
|
#if defined(__linux__)
|
|
char addrs[273];
|
|
#endif /* __linux__ */
|
|
double net_rec[15], net_trans[15];
|
|
// wireless extensions
|
|
char essid[32];
|
|
char bitrate[16];
|
|
char mode[16];
|
|
int link_qual;
|
|
int link_qual_max;
|
|
char ap[18];
|
|
};
|
|
|
|
extern struct net_stat netstats[];
|
|
|
|
struct net_stat *get_net_stat(const char *, void *, void *);
|
|
|
|
void parse_net_stat_arg(struct text_object *, const char *, void *);
|
|
void parse_net_stat_bar_arg(struct text_object *, const char *, void *);
|
|
void print_downspeed(struct text_object *, char *, int);
|
|
void print_downspeedf(struct text_object *, char *, int);
|
|
void print_upspeed(struct text_object *, char *, int);
|
|
void print_upspeedf(struct text_object *, char *, int);
|
|
void print_totaldown(struct text_object *, char *, int);
|
|
void print_totalup(struct text_object *, char *, int);
|
|
void print_addr(struct text_object *, char *, int);
|
|
#ifdef __linux__
|
|
void print_addrs(struct text_object *, char *, int);
|
|
#endif /* __linux__ */
|
|
#ifdef X11
|
|
void parse_net_stat_graph_arg(struct text_object *, const char *, void *);
|
|
double downspeedgraphval(struct text_object *);
|
|
double upspeedgraphval(struct text_object *);
|
|
#endif /* X11 */
|
|
#ifdef __linux__
|
|
#ifdef HAVE_IWLIB
|
|
void print_wireless_essid(struct text_object *, char *, int);
|
|
void print_wireless_mode(struct text_object *, char *, int);
|
|
void print_wireless_bitrate(struct text_object *, char *, int);
|
|
void print_wireless_ap(struct text_object *, char *, int);
|
|
void print_wireless_link_qual(struct text_object *, char *, int);
|
|
void print_wireless_link_qual_max(struct text_object *, char *, int);
|
|
void print_wireless_link_qual_perc(struct text_object *, char *, int);
|
|
double wireless_link_barval(struct text_object *);
|
|
#endif /* HAVE_IWLIB */
|
|
#endif /* __linux__ */
|
|
|
|
void clear_net_stats(void);
|
|
|
|
void parse_if_up_arg(struct text_object *, const char *);
|
|
int interface_up(struct text_object *);
|
|
void free_if_up(struct text_object *);
|
|
|
|
void free_dns_data(struct text_object *);
|
|
void update_dns_data(void);
|
|
void parse_nameserver_arg(struct text_object *, const char *);
|
|
void print_nameserver(struct text_object *, char *, int);
|
|
|
|
#endif /* _NET_STAT_H */
|