summaryrefslogtreecommitdiff
path: root/pysnmp/carrier/sockfix.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysnmp/carrier/sockfix.py')
-rw-r--r--pysnmp/carrier/sockfix.py14
1 files changed, 11 insertions, 3 deletions
diff --git a/pysnmp/carrier/sockfix.py b/pysnmp/carrier/sockfix.py
index d4ea504e..02480bb2 100644
--- a/pysnmp/carrier/sockfix.py
+++ b/pysnmp/carrier/sockfix.py
@@ -6,7 +6,10 @@
#
import socket
-symbols = {
+from pysnmp import debug
+
+
+SYMBOLS = {
'IP_PKTINFO': 8,
'IP_TRANSPARENT': 19,
'SOL_IPV6': 41,
@@ -14,6 +17,11 @@ symbols = {
'IPV6_PKTINFO': 50
}
-for symbol in symbols:
+for symbol, value in SYMBOLS.items():
if not hasattr(socket, symbol):
- setattr(socket, symbol, symbols[symbol])
+ setattr(socket, symbol, value)
+
+ debug.logger & debug.flagIO and debug.logger(
+ 'WARNING: the socket module on this platform misses option %s. '
+ 'Assuming its value is %d.' % (symbol, value)
+ )