You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
442 B
20 lines
442 B
#
|
|
# This file is part of pysnmp software.
|
|
#
|
|
# Copyright (c) 2005-2016, Ilya Etingof <ilya@glas.net>
|
|
# License: http://pysnmp.sf.net/license.html
|
|
#
|
|
import socket
|
|
|
|
symbols = {
|
|
'IP_PKTINFO': 8,
|
|
'IP_TRANSPARENT': 19,
|
|
'SOL_IPV6': 41,
|
|
'IPV6_RECVPKTINFO': 49,
|
|
'IPV6_PKTINFO': 50
|
|
}
|
|
|
|
for symbol in symbols:
|
|
if not hasattr(socket, symbol):
|
|
setattr(socket, symbol, symbols[symbol])
|