blob 7153ad900e8f77bf29e632324f54f6a678581e1d 507 bytes (raw)
name: lib/yahns/chunk_body.rb # note: path name is non-authoritative(*)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| | # -*- encoding: binary -*-
# Copyright (C) 2016 all contributors <yahns-public@yhbt.net>
# License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
# frozen_string_literal: false
class Yahns::ChunkBody # :nodoc:
def initialize(body)
@body = body
end
def each
@body.each do |chunk|
chunk = "#{chunk.bytesize.to_s(16)}\r\n#{chunk}\r\n"
yield chunk
chunk.clear
end
yield "0\r\n\r\n".freeze
end
def close
@body.close if @body.respond_to?(:close)
end
end
|
debug log:
solving 7153ad9 ...
found 7153ad9 in https://yhbt.net/yahns.git/
(*) Git path names are given by the tree(s) the blob belongs to.
Blobs themselves have no identifier aside from the hash of its contents.^
Code repositories for project(s) associated with this public inbox
https://yhbt.net/yahns.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).