예제 #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)