mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-20 02:40:03 +02:00
rx_zmqip fix
This commit is contained in:
parent
3ddeea3c2b
commit
b8350b070e
@ -709,7 +709,7 @@ class Detector(CppDetectorApi):
|
|||||||
|
|
||||||
@rx_zmqip.setter
|
@rx_zmqip.setter
|
||||||
def rx_zmqip(self, ip):
|
def rx_zmqip(self, ip):
|
||||||
self.setRxZmqIP(ip)
|
self.setRxZmqIP(IpAddr(ip))
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def zmqip(self):
|
def zmqip(self):
|
||||||
@ -717,7 +717,7 @@ class Detector(CppDetectorApi):
|
|||||||
|
|
||||||
@zmqip.setter
|
@zmqip.setter
|
||||||
def zmqip(self, ip):
|
def zmqip(self, ip):
|
||||||
self.setClientZmqIp(ip)
|
self.setClientZmqIp(IpAddr(ip))
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def udp_dstip(self):
|
def udp_dstip(self):
|
||||||
@ -769,7 +769,7 @@ class Detector(CppDetectorApi):
|
|||||||
|
|
||||||
@udp_srcip2.setter
|
@udp_srcip2.setter
|
||||||
def udp_srcip2(self, ip):
|
def udp_srcip2(self, ip):
|
||||||
self.setSourceUDPIP2(ip)
|
self.setSourceUDPIP2(IpAddr(ip))
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def udp_dstport(self):
|
def udp_dstport(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user