|
|
9a6c41 |
diff -urpN old/snmplib/snmp_api.c new/snmplib/snmp_api.c
|
|
|
9a6c41 |
--- old/snmplib/snmp_api.c 2017-04-03 09:07:41.795091238 +0200
|
|
|
9a6c41 |
+++ new/snmplib/snmp_api.c 2017-04-03 10:54:47.809422106 +0200
|
|
|
9a6c41 |
@@ -1553,12 +1553,12 @@ _sess_open(netsnmp_session * in_session)
|
|
|
9a6c41 |
if (in_session->flags & SNMP_FLAGS_STREAM_SOCKET) {
|
|
|
9a6c41 |
transport =
|
|
|
9a6c41 |
netsnmp_tdomain_transport_full("snmp", in_session->peername,
|
|
|
9a6c41 |
- in_session->local_port, "tcp",
|
|
|
9a6c41 |
+ in_session->local_port, "tcp,tcp6",
|
|
|
9a6c41 |
NULL);
|
|
|
9a6c41 |
} else {
|
|
|
9a6c41 |
transport =
|
|
|
9a6c41 |
netsnmp_tdomain_transport_full("snmp", in_session->peername,
|
|
|
9a6c41 |
- in_session->local_port, "udp",
|
|
|
9a6c41 |
+ in_session->local_port, "udp,udp6",
|
|
|
9a6c41 |
NULL);
|
|
|
9a6c41 |
}
|
|
|
9a6c41 |
|
|
|
9a6c41 |
diff -urpN old/snmplib/snmp_transport.c new/snmplib/snmp_transport.c
|
|
|
9a6c41 |
--- old/snmplib/snmp_transport.c 2012-10-10 00:28:58.000000000 +0200
|
|
|
9a6c41 |
+++ new/snmplib/snmp_transport.c 2017-04-03 11:50:49.158878706 +0200
|
|
|
9a6c41 |
@@ -498,6 +498,9 @@ netsnmp_tdomain_transport_full(const cha
|
|
|
9a6c41 |
const char * const *spec = NULL;
|
|
|
9a6c41 |
int any_found = 0;
|
|
|
9a6c41 |
char buf[SNMP_MAXPATH];
|
|
|
9a6c41 |
+ char **lspec = 0;
|
|
|
9a6c41 |
+ char *tokenized_domain = 0;
|
|
|
9a6c41 |
+
|
|
|
9a6c41 |
|
|
|
9a6c41 |
DEBUGMSGTL(("tdomain",
|
|
|
9a6c41 |
"tdomain_transport_full(\"%s\", \"%s\", %d, \"%s\", \"%s\")\n",
|
|
|
9a6c41 |
@@ -587,7 +590,23 @@ netsnmp_tdomain_transport_full(const cha
|
|
|
9a6c41 |
DEBUGMSGTL(("tdomain",
|
|
|
9a6c41 |
"Use user specified default domain \"%s\"\n",
|
|
|
9a6c41 |
default_domain));
|
|
|
9a6c41 |
- match = find_tdomain(default_domain);
|
|
|
9a6c41 |
+ if (!strchr(default_domain, ','))
|
|
|
9a6c41 |
+ match = find_tdomain(default_domain);
|
|
|
9a6c41 |
+ else {
|
|
|
9a6c41 |
+ int commas = 0;
|
|
|
9a6c41 |
+ const char *cp = default_domain;
|
|
|
9a6c41 |
+ char *ptr = NULL;
|
|
|
9a6c41 |
+ tokenized_domain = strdup(default_domain);
|
|
|
9a6c41 |
+
|
|
|
9a6c41 |
+ while (*++cp) if (*cp == ',') commas++;
|
|
|
9a6c41 |
+ lspec = calloc(commas+2, sizeof(char *));
|
|
|
9a6c41 |
+ commas = 1;
|
|
|
9a6c41 |
+ lspec[0] = strtok_r(tokenized_domain, ",", &ptr);
|
|
|
9a6c41 |
+ while ((lspec[commas++] = strtok_r(NULL, ",", &ptr)))
|
|
|
9a6c41 |
+ ;
|
|
|
9a6c41 |
+ spec = (const char * const *)lspec;
|
|
|
9a6c41 |
+ }
|
|
|
9a6c41 |
+
|
|
|
9a6c41 |
} else {
|
|
|
9a6c41 |
spec = netsnmp_lookup_default_domains(application);
|
|
|
9a6c41 |
if (spec == NULL) {
|
|
|
9a6c41 |
@@ -636,6 +655,10 @@ netsnmp_tdomain_transport_full(const cha
|
|
|
9a6c41 |
else
|
|
|
9a6c41 |
t = match->f_create_from_tstring_new(addr, local, addr2);
|
|
|
9a6c41 |
if (t) {
|
|
|
9a6c41 |
+ if (lspec) {
|
|
|
9a6c41 |
+ free(tokenized_domain);
|
|
|
9a6c41 |
+ free(lspec);
|
|
|
9a6c41 |
+ }
|
|
|
9a6c41 |
return t;
|
|
|
9a6c41 |
}
|
|
|
9a6c41 |
}
|
|
|
9a6c41 |
@@ -647,6 +670,10 @@ netsnmp_tdomain_transport_full(const cha
|
|
|
9a6c41 |
}
|
|
|
9a6c41 |
if (!any_found)
|
|
|
9a6c41 |
snmp_log(LOG_ERR, "No support for any checked transport domain\n");
|
|
|
9a6c41 |
+ if (lspec) {
|
|
|
9a6c41 |
+ free(tokenized_domain);
|
|
|
9a6c41 |
+ free(lspec);
|
|
|
9a6c41 |
+ }
|
|
|
9a6c41 |
return NULL;
|
|
|
9a6c41 |
}
|
|
|
9a6c41 |
|
|
|
9a6c41 |
diff -urpN old/snmplib/system.c new/snmplib/system.c
|
|
|
9a6c41 |
--- old/snmplib/system.c 2012-10-10 00:28:58.000000000 +0200
|
|
|
9a6c41 |
+++ new/snmplib/system.c 2017-04-03 12:02:35.693153449 +0200
|
|
|
9a6c41 |
@@ -750,13 +750,6 @@ netsnmp_gethostbyname_v4(const char* nam
|
|
|
9a6c41 |
|
|
|
9a6c41 |
err = netsnmp_getaddrinfo(name, NULL, &hint, &addrs);
|
|
|
9a6c41 |
if (err != 0) {
|
|
|
9a6c41 |
-#if HAVE_GAI_STRERROR
|
|
|
9a6c41 |
- snmp_log(LOG_ERR, "getaddrinfo: %s %s\n", name,
|
|
|
9a6c41 |
- gai_strerror(err));
|
|
|
9a6c41 |
-#else
|
|
|
9a6c41 |
- snmp_log(LOG_ERR, "getaddrinfo: %s (error %d)\n", name,
|
|
|
9a6c41 |
- err);
|
|
|
9a6c41 |
-#endif
|
|
|
9a6c41 |
return -1;
|
|
|
9a6c41 |
}
|
|
|
9a6c41 |
|
|
|
9a6c41 |
diff -urpN old/snmplib/transports/snmpIPv6BaseDomain.c new/snmplib/transports/snmpIPv6BaseDomain.c
|
|
|
9a6c41 |
--- old/snmplib/transports/snmpIPv6BaseDomain.c 2012-10-10 00:28:58.000000000 +0200
|
|
|
9a6c41 |
+++ new/snmplib/transports/snmpIPv6BaseDomain.c 2017-04-03 12:00:38.669641503 +0200
|
|
|
9a6c41 |
@@ -342,13 +342,6 @@ netsnmp_sockaddr_in6_2(struct sockaddr_i
|
|
|
9a6c41 |
err = netsnmp_getaddrinfo(peername, NULL, &hint, &addrs);
|
|
|
9a6c41 |
}
|
|
|
9a6c41 |
if (err != 0) {
|
|
|
9a6c41 |
-#if HAVE_GAI_STRERROR
|
|
|
9a6c41 |
- snmp_log(LOG_ERR, "getaddrinfo(\"%s\", NULL, ...): %s\n", peername,
|
|
|
9a6c41 |
- gai_strerror(err));
|
|
|
9a6c41 |
-#else
|
|
|
9a6c41 |
- snmp_log(LOG_ERR, "getaddrinfo(\"%s\", NULL, ...): (error %d)\n",
|
|
|
9a6c41 |
- peername, err);
|
|
|
9a6c41 |
-#endif
|
|
|
9a6c41 |
free(peername);
|
|
|
9a6c41 |
return 0;
|
|
|
9a6c41 |
}
|