# File lib/protocols/httpcli2.rb, line 94
 94:                         def receive_header_line ln
 95:                                 if ln.length == 0
 96:                                         if @header_lines.length > 0
 97:                                                 process_header
 98:                                         else
 99:                                                 @blanks += 1
100:                                                 if @blanks > 10
101:                                                         @conn.close_connection
102:                                                 end
103:                                         end
104:                                 else
105:                                         @header_lines << ln
106:                                         if @header_lines.length > 100
107:                                                 @internal_error = :bad_header
108:                                                 @conn.close_connection
109:                                         end
110:                                 end
111:                         end