41 lines
1.3 KiB
C
41 lines
1.3 KiB
C
/*
|
|
* Copyright (c) 2025 Wolfgang Hottgenroth <woho@hottis.de>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
|
|
|
|
#include "mib.h"
|
|
#include "log.h"
|
|
|
|
|
|
static void mib_hottisntpdcounter(struct agentx_varbind *vb) {
|
|
long long ticks = 200169;
|
|
|
|
agentx_varbind_counter64(vb, ticks);
|
|
}
|
|
|
|
void mib_register(struct agentx_context *sac) {
|
|
struct agentx_region *hottis;
|
|
struct agentx_object *hottisNtpdCounter;
|
|
|
|
if ((hottis = agentx_region(sac, AGENTX_OID(HOTTIS_MIB), 0)) == NULL)
|
|
fatal("agentx_region");
|
|
|
|
if ((hottisNtpdCounter = agentx_object(hottis, AGENTX_OID(HOTTIS_NTPD_COUNTER),
|
|
NULL, 0, 0, mib_hottisntpdcounter)) == NULL)
|
|
fatal("agentx_object");
|
|
}
|
|
|