aboutsummaryrefslogtreecommitdiffstats
path: root/lib/net/protocol.rb
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-04-25 09:23:21 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-04-25 09:23:21 +0000
commitacbb1c943457d3b8802f099ee0e34331bc78bd38 (patch)
tree4b8576efcf92162b73b2456221be98220ade80d6 /lib/net/protocol.rb
parentee38413bf0a5338ba5e735d9c78c6ad9149ee00d (diff)
downloadruby-acbb1c943457d3b8802f099ee0e34331bc78bd38.tar.gz
version 1.1.16
o smtp.rb: SMTP AUTH (contributed by Kazuhiro Izawa) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@677 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/protocol.rb')
-rw-r--r--lib/net/protocol.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/net/protocol.rb b/lib/net/protocol.rb
index d8e358b95f..81e8e987eb 100644
--- a/lib/net/protocol.rb
+++ b/lib/net/protocol.rb
@@ -15,7 +15,7 @@ require 'socket'
module Net
- Version = '1.1.15'
+ Version = '1.1.16'
=begin
@@ -346,6 +346,7 @@ Object
SyntaxErrorCode = ErrorCode.mkchild( ProtoSyntaxError )
FatalErrorCode = ErrorCode.mkchild( ProtoFatalError )
ServerErrorCode = ErrorCode.mkchild( ProtoServerError )
+ AuthErrorCode = ErrorCode.mkchild( ProtoAuthError )
RetriableCode = ReplyCode.mkchild( ProtoRetriableError )
UnknownCode = ReplyCode.mkchild( ProtoUnknownError )