diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-17 07:06:16 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-17 07:06:16 +0000 |
commit | b1d918b58f41c7c47a49f162e6d471dfc1563b3b (patch) | |
tree | f2efd03643d52ab9fe792bbc13c6320dee5397a8 /ext/openssl/lib | |
parent | e22edfe9655ac36bc335d55068201f5751611c85 (diff) | |
download | ruby-b1d918b58f41c7c47a49f162e6d471dfc1563b3b.tar.gz ruby-b1d918b58f41c7c47a49f162e6d471dfc1563b3b.tar.xz ruby-b1d918b58f41c7c47a49f162e6d471dfc1563b3b.zip |
* ext/openssl/lib/openssl/buffering.rb (Buffering#gets): added second
optional argument to specify maximum length limit.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/lib')
-rw-r--r-- | ext/openssl/lib/openssl/buffering.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/openssl/lib/openssl/buffering.rb b/ext/openssl/lib/openssl/buffering.rb index 8800aa53c..5dabcd513 100644 --- a/ext/openssl/lib/openssl/buffering.rb +++ b/ext/openssl/lib/openssl/buffering.rb @@ -99,7 +99,7 @@ module Buffering ret end - def gets(eol=$/) + def gets(eol=$/, limit=nil) idx = @rbuffer.index(eol) until @eof break if idx @@ -111,6 +111,9 @@ module Buffering else size = idx ? idx+eol.size : nil end + if limit and limit >= 0 + size = [size, limit].min + end consume_rbuff(size) end |