示例#1
0
 def read(self):
     return Net.read(self.ssl)
示例#2
0
文件: EPP.py 项目: hiqdev/heppy
 def read(self):
     return Net.read(self.ssl)
示例#3
0
 def write(self, xml):
     Net.write(self.ssl, xml)
示例#4
0
文件: EPP.py 项目: hiqdev/heppy
 def write(self, xml):
     Net.write(self.ssl, xml)
示例#5
0
文件: Client.py 项目: teadur/heppy
 def read(self):
     res = Net.read(self.socket)
     self.disconnect()
     return res
示例#6
0
文件: Client.py 项目: teadur/heppy
 def write(self, data):
     self.connect()
     Net.write(self.socket, data)
示例#7
0
文件: Client.py 项目: hiqdev/heppy
 def read(self):
     res = Net.read(self.socket)
     self.disconnect()
     return res
示例#8
0
文件: Client.py 项目: hiqdev/heppy
 def write(self, data):
     self.connect()
     Net.write(self.socket, data)