X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Ftcpconns.c;h=90dedce4dfe488bed5c7f37a60129690c725a5c3;hp=07170d788821314399fd3b0b4a2efcd49003252d;hb=ec51ddee94fa2ba1e01fe0e336ccc9c190a198ff;hpb=a396da422740caf336a6d594515e8d80de6f440a diff --git a/src/tcpconns.c b/src/tcpconns.c index 07170d78..90dedce4 100644 --- a/src/tcpconns.c +++ b/src/tcpconns.c @@ -205,7 +205,7 @@ static const char *tcp_state[] = {"CLOSED", "LISTEN", "SYN_SENT", "FIN_WAIT2", "TIME_WAIT"}; static kvm_t *kvmd; -static u_long inpcbtable_off = 0; +static u_long inpcbtable_off; struct inpcbtable *inpcbtable_ptr = NULL; #define TCP_STATE_LISTEN 1 @@ -261,8 +261,8 @@ static const char *config_keys[] = {"ListeningPorts", "LocalPort", "RemotePort", "AllPortsSummary"}; static int config_keys_num = STATIC_ARRAY_SIZE(config_keys); -static int port_collect_listening = 0; -static int port_collect_total = 0; +static int port_collect_listening; +static int port_collect_total; static port_entry_t *port_list_head; static uint32_t count_total[TCP_STATE_MAX + 1]; @@ -271,7 +271,7 @@ static uint32_t count_total[TCP_STATE_MAX + 1]; /* This depends on linux inet_diag_req because if this structure is missing, * sequence_number is useless and we get a compilation warning. */ -static uint32_t sequence_number = 0; +static uint32_t sequence_number; #endif static enum { SRC_DUNNO, SRC_NETLINK, SRC_PROC } linux_source = SRC_DUNNO;