mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-01-16 12:07:44 +01:00
rx_zmqip fix
This commit is contained in:
@@ -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):
|
||||||
|
|||||||
Reference in New Issue
Block a user