--- /dev/null
+/* $OpenBSD: smi.h,v 1.1 2022/01/19 10:25:04 martijn Exp $ */
+
+/*
+ * Copyright (c) 2021 Martijn van Duren <martijn@openbsd.org>
+ *
+ * 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 <ber.h>
+#include <stdint.h>
+
+#define BER_OID(...) (struct ber_oid) { { __VA_ARGS__ }, \
+ (sizeof((u_int32_t []) { __VA_ARGS__ }) / sizeof(u_int32_t)) }
+
+char *smi_oid2string(struct ber_oid *, char *, size_t, size_t);
+u_long smi_getticks(void);
+char *smi_print_element(struct ber_element *);
-/* $OpenBSD: snmpd.h,v 1.101 2022/01/19 10:19:27 martijn Exp $ */
+/* $OpenBSD: snmpd.h,v 1.102 2022/01/19 10:25:04 martijn Exp $ */
/*
* Copyright (c) 2007, 2008, 2012 Reyk Floeter <reyk@openbsd.org>
#include <imsg.h>
#include "log.h"
+#include "smi.h"
#include "snmp.h"
#ifndef nitems
/* smi.c */
int smi_init(void);
-u_long smi_getticks(void);
void smi_mibtree(struct oid *);
struct oid *smi_find(struct oid *);
struct oid *smi_nfind(struct oid *);
struct oid *smi_foreach(struct oid *, u_int);
void smi_oidlen(struct ber_oid *);
void smi_scalar_oidlen(struct ber_oid *);
-char *smi_oid2string(struct ber_oid *, char *, size_t, size_t);
int smi_string2oid(const char *, struct ber_oid *);
void smi_delete(struct oid *);
int smi_insert(struct oid *);
int smi_key_cmp(struct oid *, struct oid *);
unsigned int smi_application(struct ber_element *);
void smi_debug_elements(struct ber_element *);
-char *smi_print_element(struct ber_element *);
/* timer.c */
void timer_init(void);