Module: EPPClient::HostmasterConnection

Included in:
Hostmaster
Defined in:
lib/epp-client/hostmaster-connection.rb

Instance Method Summary collapse

Instance Method Details

#send_frame(xml) ⇒ Object



3
4
5
6
7
8
# File 'lib/epp-client/hostmaster-connection.rb', line 3

def send_frame(xml)
  @sent_frame = xml
  @socket.write [xml.bytesize + 4].pack("N")
  @socket.write xml
  sent_frame_to_xml
end