aboutsummaryrefslogtreecommitdiffstats
path: root/HostnameMeter.c
blob: 7c4e6b1a85f9e00b41a3cf18b2bf3866385769c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
htop
(C) 2004-2011 Hisham H. Muhammad
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

#include "HostnameMeter.h"
#include "Meter.h"

#include <unistd.h>

#include "debug.h"

int HostnameMeter_attributes[] = {
   HOSTNAME
};

static void HostnameMeter_setValues(Meter* this, char* buffer, int size) {
   (void) this;
   gethostname(buffer, size-1);
}

MeterType HostnameMeter = {
   .setValues = HostnameMeter_setValues, 
   .display = NULL,
   .mode = TEXT_METERMODE,
   .total = 100.0,
   .items = 1,
   .attributes = HostnameMeter_attributes,
   .name = "Hostname",
   .uiName = "Hostname",
   .caption = "Hostname: ",
};

© 2014-2024 Faster IT GmbH | imprint | privacy policy