method
recv_response
recv_response()
private
Hide source
# File lib/net/smtp.rb, line 920 def recv_response buf = '' while true line = @socket.readline buf << line << "\n" break unless line[3,1] == '-' # "210-PIPELINING" end Response.parse(buf) end