2009-02-17 18:33:32 +00:00
|
|
|
/*
|
2011-12-26 21:35:57 +00:00
|
|
|
htop - HostnameMeter.c
|
2011-05-26 16:35:07 +00:00
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2009-02-17 18:33:32 +00:00
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "HostnameMeter.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
|
|
|
|
#include "CRT.h"
|
2009-02-17 18:33:32 +00:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2011-12-26 21:35:57 +00:00
|
|
|
/*{
|
|
|
|
#include "Meter.h"
|
|
|
|
}*/
|
2009-02-17 18:33:32 +00:00
|
|
|
|
|
|
|
int HostnameMeter_attributes[] = {
|
|
|
|
HOSTNAME
|
|
|
|
};
|
|
|
|
|
|
|
|
static void HostnameMeter_setValues(Meter* this, char* buffer, int size) {
|
2010-02-25 01:43:18 +00:00
|
|
|
(void) this;
|
2009-02-17 18:33:32 +00:00
|
|
|
gethostname(buffer, size-1);
|
|
|
|
}
|
|
|
|
|
2012-12-05 15:12:20 +00:00
|
|
|
MeterClass HostnameMeter_class = {
|
|
|
|
.super = {
|
|
|
|
.extends = Class(Meter),
|
|
|
|
.delete = Meter_delete
|
|
|
|
},
|
2009-02-17 18:33:32 +00:00
|
|
|
.setValues = HostnameMeter_setValues,
|
2012-12-05 15:12:20 +00:00
|
|
|
.defaultMode = TEXT_METERMODE,
|
2009-02-17 18:33:32 +00:00
|
|
|
.total = 100.0,
|
|
|
|
.attributes = HostnameMeter_attributes,
|
|
|
|
.name = "Hostname",
|
|
|
|
.uiName = "Hostname",
|
|
|
|
.caption = "Hostname: ",
|
|
|
|
};
|