class Net::POP3

def command # :nodoc:

:nodoc:
Raises IOError if there is no active socket

Returns the current command.
def command # :nodoc:
  raise IOError, 'POP session not opened yet' \
                                  if not @socket or @socket.closed?
  @command
end