# File lib/protocols/httpcli2.rb, line 126
126:                         def receive_chunk_header ln
127:                                 if ln.length > 0
128:                                         chunksize = ln.to_i(16)
129:                                         if chunksize > 0
130:                                                 @conn.set_text_mode(ln.to_i(16))
131:                                         else
132:                                                 @content = @content ? @content.join : ''
133:                                                 @chunk_trailer = true
134:                                         end
135:                                 else
136:                                         # We correctly come here after each chunk gets read.
137:                                         # p "Got A BLANK chunk line"
138:                                 end
139: 
140:                         end