From 778c09ce5a2c8683e6b865da7ae5143ced3691bd Mon Sep 17 00:00:00 2001 From: Nate Choe Date: Wed, 15 Jun 2022 14:39:35 -0500 Subject: [PATCH] Updated documentation --- documentation/dynamicpages.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/documentation/dynamicpages.md b/documentation/dynamicpages.md index 654ad82..ec379c2 100644 --- a/documentation/dynamicpages.md +++ b/documentation/dynamicpages.md @@ -73,6 +73,8 @@ typedef enum { /* A file where the total length is unknown (i.e. a pipe) */ BUFFER, /* A buffer stored in memory. free() will be called on said buffer. */ + BUFFER_NOFREE, + /* Same as BUFFER but free() won't be called */ DEFAULT /* The default response for the response code */ } ResponseType;