diff options
author | Sverker Eriksson <[email protected]> | 2010-06-10 15:56:12 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2010-06-10 15:56:12 +0200 |
commit | 288f54c8f4f7cac0951f0807e4a6d3b59c099156 (patch) | |
tree | b28c22ade745851c9eb6211b82ed06c3d37c2258 /erts/emulator/test | |
parent | 627f79fc893a779f009b47cd8e9819eb7f34a7a0 (diff) | |
download | otp-288f54c8f4f7cac0951f0807e4a6d3b59c099156.tar.gz otp-288f54c8f4f7cac0951f0807e4a6d3b59c099156.tar.bz2 otp-288f54c8f4f7cac0951f0807e4a6d3b59c099156.zip |
{packet,http} allow empty response phrase
Packet type 'http' for erlang:deocode:packet and gen_tcp allow a
response line with an empty phrase string, like
"HTTP/1.1 200\r\n".
Earlier, an empty phrase was only accepted if the status code
was followed by space or tab, like
"HTTP/1.1 200 \r\n".
Diffstat (limited to 'erts/emulator/test')
-rw-r--r-- | erts/emulator/test/decode_packet_SUITE.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/erts/emulator/test/decode_packet_SUITE.erl b/erts/emulator/test/decode_packet_SUITE.erl index 6cde286871..d9e961be2f 100644 --- a/erts/emulator/test/decode_packet_SUITE.erl +++ b/erts/emulator/test/decode_packet_SUITE.erl @@ -304,6 +304,10 @@ http(Config) when is_list(Config) -> {ok, {http_request, 'GET', ResB, {1,1}}, Rest} = decode_pkt(http_bin,Bin) end, lists:foreach(UriF, http_uri_variants()), + + %% Response with empty phrase + ?line {ok,{http_response,{1,1},200,[]},<<>>} = decode_pkt(http, <<"HTTP/1.1 200\r\n">>, []), + ?line {ok,{http_response,{1,1},200,<<>>},<<>>} = decode_pkt(http_bin, <<"HTTP/1.1 200\r\n">>, []), ok. http_with_bin(http) -> |