コード例 #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)