diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/manual/ranch_proxy_header.header.asciidoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/manual/ranch_proxy_header.header.asciidoc b/doc/src/manual/ranch_proxy_header.header.asciidoc index 4dc5044..c551110 100644 --- a/doc/src/manual/ranch_proxy_header.header.asciidoc +++ b/doc/src/manual/ranch_proxy_header.header.asciidoc @@ -13,7 +13,7 @@ header(ProxyInfo, BuildOpts) -> iodata() ProxyInfo :: ranch_proxy_header:proxy_info() BuildOpts :: #{ - checksum => crc32, + checksum => crc32c, padding => pos_integer() %% >= 3 } ---- @@ -63,7 +63,7 @@ Data = ranch_proxy_header:parse(ProxyInfo). [source,erlang] ---- Data = ranch_proxy_header:parse(ProxyInfo, #{ - checksum => crc32, + checksum => crc32c, padding => 7 }). ---- |