lib/ronin/network/mixins/smtp.rb in ronin-support-0.4.0 vs lib/ronin/network/mixins/smtp.rb in ronin-support-0.4.1
- old
+ new
@@ -90,10 +90,12 @@
# The SMTP session.
#
# @return [Net::SMTP]
# The SMTP session.
#
+ # @see Network::SMTP#smtp_connect
+ #
# @api public
#
def smtp_connect(options={},&block)
print_info "Connecting to #{host_port} ..."
@@ -110,10 +112,10 @@
# After the block has returned, the session will be closed.
#
# @yieldparam [Net::SMTP] session
# The SMTP session.
#
- # @see smtp_connect
+ # @see Network::SMTP#smtp_session
#
# @api public
#
def smtp_session(options={},&block)
super(smtp_merge_options(options)) do |sess|