notModified constant

int const notModified

notModified = 304.

This is used for caching purposes. It is telling to client that response has not been modified. So, client can continue to use same cached version of response.

https://tools.ietf.org/html/rfc7232#section-4.1

Implementation

static const int notModified = 304;