= private = protected
voidresp()
Receives a response.
Raises FTPReplyError if the first position of the response code is not equal 2.
# File lib/net/ftp.rb, line 480 def voidresp # :nodoc: resp = getresp if !resp.start_with?("2") raise FTPReplyError, resp end end