mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 18:08:16 +00:00
[1831] Fix a deprecation warning in xfrin.py
Also add my name to AUTHORS.
This commit is contained in:
parent
9bd788945d
commit
47b58321cd
1
AUTHORS
1
AUTHORS
@ -14,6 +14,7 @@ Michael Graff
|
|||||||
Michal Vaner
|
Michal Vaner
|
||||||
Mukund Sivaraman
|
Mukund Sivaraman
|
||||||
Naoki Kambe
|
Naoki Kambe
|
||||||
|
Paul Selkirk
|
||||||
Shane Kerr
|
Shane Kerr
|
||||||
Shen Tingting
|
Shen Tingting
|
||||||
Stephen Morris
|
Stephen Morris
|
||||||
|
@ -622,7 +622,7 @@ class XfrinConnection(asyncore.dispatcher):
|
|||||||
it if the constructor raises an exception after opening the socket.
|
it if the constructor raises an exception after opening the socket.
|
||||||
'''
|
'''
|
||||||
self.create_socket(self._master_addrinfo[0], self._master_addrinfo[1])
|
self.create_socket(self._master_addrinfo[0], self._master_addrinfo[1])
|
||||||
self.setblocking(1)
|
self.socket.setblocking(1)
|
||||||
|
|
||||||
def _get_zone_soa(self):
|
def _get_zone_soa(self):
|
||||||
'''Retrieve the current SOA RR of the zone to be transferred.
|
'''Retrieve the current SOA RR of the zone to be transferred.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user