Skip to content

Support HTTP status 102 Processing #2257

@rfc2822

Description

@rfc2822

There's a HTTP interim status code 102 Processing. It's defined in RFC 2518 and can be found in the HTTP Status Code Registry.

Funnily, it has been dropped in the revised WebDAV RFC 4918, so I don't know whether it's worth dealing with it (RFC 4918 is from 2007 and 2518 from 1999!). However, it's still in the status code registry, and I have just encountered a quite large WebDAV service which uses this status code (original case).

It could be exactly treated as status code 100, so I guess adding it in Http1xStream would be enough?

// HTTP_PROCESSING: 102

 if (statusLine.code != HTTP_CONTINUE || statusLine.code != HTTP_PROCESSING)
// instead of
 if (statusLine.code != HTTP_CONTINUE)

What do you think about that?

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions