aboutsummaryrefslogtreecommitdiffstats
path: root/lib/plum/frame_utils.rb
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2015-10-25 23:44:05 +0900
committerKazuki Yamaguchi <k@rhe.jp>2015-10-25 23:44:05 +0900
commitbaf217cf0ed4eb5990d7823903a152d0c337c377 (patch)
tree2ddf447357d9b106ca7e0a9a3f9e9c2c97e6c599 /lib/plum/frame_utils.rb
parente14480d588bfc6182fab7b9ed7292c317b36a752 (diff)
downloadplum-baf217cf0ed4eb5990d7823903a152d0c337c377.tar.gz
improve docs
Diffstat (limited to 'lib/plum/frame_utils.rb')
-rw-r--r--lib/plum/frame_utils.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/plum/frame_utils.rb b/lib/plum/frame_utils.rb
index 69ae3d2..e52d444 100644
--- a/lib/plum/frame_utils.rb
+++ b/lib/plum/frame_utils.rb
@@ -3,7 +3,6 @@ using Plum::BinaryString
module Plum
module FrameUtils
# Splits the DATA frame into multiple frames if the payload size exceeds max size.
- #
# @param max [Integer] The maximum size of a frame payload.
# @return [Array<Frame>] The splitted frames.
def split_data(max)
@@ -18,7 +17,6 @@ module Plum
end
# Splits the HEADERS or PUSH_PROMISE frame into multiple frames if the payload size exceeds max size.
- #
# @param max [Integer] The maximum size of a frame payload.
# @return [Array<Frame>] The splitted frames.
def split_headers(max)
@@ -34,7 +32,6 @@ module Plum
end
# Parses SETTINGS frame payload. Ignores unknown settings type (see RFC7540 6.5.2).
- #
# @return [Hash<Symbol, Integer>] The parsed strings.
def parse_settings
settings = {}