HostnameMeter.c 703 Bytes
Newer Older
1
/*
Hisham Muhammad's avatar
Hisham Muhammad committed
2
htop - HostnameMeter.c
Hisham Muhammad's avatar
Hisham Muhammad committed
3
(C) 2004-2011 Hisham H. Muhammad
4
5
6
7
8
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

#include "HostnameMeter.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
9
10

#include "CRT.h"
11
12
13

#include <unistd.h>

Hisham Muhammad's avatar
Hisham Muhammad committed
14
15
16
/*{
#include "Meter.h"
}*/
17
18
19
20
21
22

int HostnameMeter_attributes[] = {
   HOSTNAME
};

static void HostnameMeter_setValues(Meter* this, char* buffer, int size) {
Hisham Muhammad's avatar
Hisham Muhammad committed
23
   (void) this;
24
25
26
27
28
29
30
31
32
33
34
35
36
37
   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: ",
};