Method: TFTP::Packet::Base#encode
- Defined in:
- lib/tftp/tftp.rb
#encode ⇒ Object
Encode the packet back to binary string. It uses the #to_str method to properly format each packet, and then forces 8bit encoding.
19 |
# File 'lib/tftp/tftp.rb', line 19 def encode; to_str.force_encoding('ascii-8bit'); end |