summaryrefslogtreecommitdiff
path: root/include/m_http.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/m_http.h')
-rw-r--r--include/m_http.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/m_http.h b/include/m_http.h
index 85feebdbb3..297f4e4466 100644
--- a/include/m_http.h
+++ b/include/m_http.h
@@ -42,6 +42,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define HTTP_CODE_PARTIAL_CONTENT 206
#define HTTP_CODE_MULTI_STATUS 207
+#define HTTP_CODE_SUCCESS(code) ((code) <= (HTTP_CODE_MULTI_STATUS) && (code) >= (HTTP_CODE_OK))
+
// 3xx Redirection
#define HTTP_CODE_MULTIPLE_CHOICES 300
#define HTTP_CODE_MOVED_PERMANENTLY 301