summaryrefslogtreecommitdiff
path: root/include/net-snmp/data_access/udp_endpoint.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net-snmp/data_access/udp_endpoint.h')
-rw-r--r--include/net-snmp/data_access/udp_endpoint.h99
1 files changed, 99 insertions, 0 deletions
diff --git a/include/net-snmp/data_access/udp_endpoint.h b/include/net-snmp/data_access/udp_endpoint.h
new file mode 100644
index 0000000..cc81b02
--- /dev/null
+++ b/include/net-snmp/data_access/udp_endpoint.h
@@ -0,0 +1,99 @@
+/*
+ * udp_endpoint data access header
+ *
+ * $Id: udp_endpoint.h 15250 2006-09-19 03:27:05Z hardaker $
+ */
+#ifndef NETSNMP_ACCESS_UDP_ENDPOINT_H
+#define NETSNMP_ACCESS_UDP_ENDPOINT_H
+
+#ifndef NETSNMP_ACCESS_IPADDRESS_BUF_SIZE
+# error "include <net-snmp/data_access/ipaddress.h> before this file"
+#endif
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**---------------------------------------------------------------------*/
+/*
+ * structure definitions
+ */
+
+/*
+ * netsnmp_udp_endpoint_entry
+ * - primary udp_endpoint structure for both ipv4 & ipv6
+ */
+ typedef struct netsnmp_udp_endpoint_s {
+
+ netsnmp_index oid_index; /* MUST BE FIRST!! for container use */
+ oid index; /* sl */
+
+ int flags; /* for net-snmp use */
+
+ u_char loc_addr[NETSNMP_ACCESS_IPADDRESS_BUF_SIZE];
+ u_char rmt_addr[NETSNMP_ACCESS_IPADDRESS_BUF_SIZE];
+
+ u_char loc_addr_len;/* address len, 4 | 16 */
+ u_char rmt_addr_len;/* address len, 4 | 16 */
+ u_char state; /* not in the mib, but what the heck */
+
+ u_short loc_port;
+ u_short rmt_port;
+
+ u_int instance;
+
+ } netsnmp_udp_endpoint_entry;
+
+
+/**---------------------------------------------------------------------*/
+/*
+ * ACCESS function prototypes
+ */
+/*
+ * ifcontainer init
+ */
+ netsnmp_container *
+ netsnmp_access_udp_endpoint_container_init(u_int init_flags);
+#define NETSNMP_ACCESS_UDP_ENDPOINT_INIT_NOFLAGS 0x0000
+
+/*
+ * ifcontainer load and free
+ */
+ netsnmp_container*
+ netsnmp_access_udp_endpoint_container_load(netsnmp_container* c,
+ u_int load_flags);
+#define NETSNMP_ACCESS_UDP_ENDPOINT_LOAD_NOFLAGS 0x0000
+
+ void netsnmp_access_udp_endpoint_container_free(netsnmp_container *c,
+ u_int free_flags);
+#define NETSNMP_ACCESS_UDP_ENDPOINT_FREE_NOFLAGS 0x0000
+#define NETSNMP_ACCESS_UDP_ENDPOINT_FREE_DONT_CLEAR 0x0001
+#define NETSNMP_ACCESS_UDP_ENDPOINT_FREE_KEEP_CONTAINER 0x0002
+
+
+/*
+ * create/free a udp_endpoint entry
+ */
+ netsnmp_udp_endpoint_entry *
+ netsnmp_access_udp_endpoint_entry_create(void);
+
+ void netsnmp_access_udp_endpoint_entry_free(netsnmp_udp_endpoint_entry *e);
+
+/*
+ * update/compare
+ */
+
+/*
+ * find entry in container
+ */
+/** not yet */
+
+
+
+/**---------------------------------------------------------------------*/
+
+# ifdef __cplusplus
+}
+#endif
+
+#endif /* NETSNMP_ACCESS_UDP_ENDPOINT_H */