diff options
author | Glenn Strauss <gstrauss@gluelogic.com> | 2022-12-02 23:51:46 -0500 |
---|---|---|
committer | Glenn Strauss <gstrauss@gluelogic.com> | 2022-12-02 23:51:46 -0500 |
commit | 3625f99bd2d65f194bde56567c0765db730c5633 (patch) | |
tree | b2b9d9f62b161814d0ad34e1bd5b8a715f7c81d4 /src/mod_magnet.c | |
parent | fcf0dc3e336a5d62c58036cdb8fc9f4c099b178e (diff) | |
download | lighttpd-git-3625f99bd2d65f194bde56567c0765db730c5633.tar.gz |
[mod_magnet] remove lighty.r.req_attr["response.*"]
remove experimental lighty.r.req_attr["response.*"] accessors
(added in lighttpd 1.4.56 (2020) and replaced in lighttpd 1.4.65 (2022))
Diffstat (limited to 'src/mod_magnet.c')
-rw-r--r-- | src/mod_magnet.c | 39 |
1 files changed, 1 insertions, 38 deletions
diff --git a/src/mod_magnet.c b/src/mod_magnet.c index 40ba046d..4a7df566 100644 --- a/src/mod_magnet.c +++ b/src/mod_magnet.c @@ -1839,12 +1839,7 @@ typedef struct { MAGNET_ENV_REQUEST_SERVER_PORT, MAGNET_ENV_REQUEST_PROTOCOL, MAGNET_ENV_REQUEST_SERVER_NAME, - MAGNET_ENV_REQUEST_STAGE, - - /* remove after lighttpd 1.4.65 */ - MAGNET_ENV_RESPONSE_HTTP_STATUS, - MAGNET_ENV_RESPONSE_BODY_LENGTH, - MAGNET_ENV_RESPONSE_BODY + MAGNET_ENV_REQUEST_STAGE } type; } magnet_env_t; @@ -1874,10 +1869,6 @@ static const magnet_env_t magnet_env[] = { { CONST_STR_LEN("request.server-name"), MAGNET_ENV_REQUEST_SERVER_NAME }, { CONST_STR_LEN("request.stage"), MAGNET_ENV_REQUEST_STAGE }, - { CONST_STR_LEN("response.http-status"), MAGNET_ENV_RESPONSE_HTTP_STATUS }, - { CONST_STR_LEN("response.body-length"), MAGNET_ENV_RESPONSE_BODY_LENGTH }, - { CONST_STR_LEN("response.body"), MAGNET_ENV_RESPONSE_BODY }, - { NULL, 0, MAGNET_ENV_UNSET } }; @@ -1996,29 +1987,6 @@ magnet_env_get_buffer_by_id (request_st * const r, const int id) http_request_state_append(dest, r->state); break; - /* remove after lighttpd 1.4.65 */ - case MAGNET_ENV_RESPONSE_HTTP_STATUS: - buffer_append_int(dest, r->http_status); - break; - case MAGNET_ENV_RESPONSE_BODY_LENGTH: - if (!r->resp_body_finished) - return NULL; - log_error(r->conf.errh, __FILE__, __LINE__, - "lighty.r.req_attr['response.body-length'] is deprecated " - "and will be removed. Use lighty.r.resp_body.len instead."); - buffer_append_int(dest, chunkqueue_length(&r->write_queue)); - break; - case MAGNET_ENV_RESPONSE_BODY: - if (!r->resp_body_finished) - return NULL; - log_error(r->conf.errh, __FILE__, __LINE__, - "lighty.r.req_attr['response.body'] is deprecated " - "and will be removed. Use lighty.r.resp_body.get instead."); - if (0 == chunkqueue_length(&r->write_queue) - || !(dest = chunkqueue_read_squash(&r->write_queue,r->conf.errh))) - buffer_copy_string_len((dest = r->tmp_buf), CONST_STR_LEN("")); - break; - case MAGNET_ENV_UNSET: return NULL; } @@ -2132,11 +2100,6 @@ static int magnet_env_set(lua_State *L) { return magnet_env_set_server_name(r, &val); #endif /*case MAGNET_ENV_REQUEST_STAGE:*//*(change attempts silently ignored)*/ - /* remove after lighttpd 1.4.65 */ - /*case MAGNET_ENV_RESPONSE_HTTP_STATUS:*/ - /*case MAGNET_ENV_RESPONSE_BODY_LENGTH:*/ - case MAGNET_ENV_RESPONSE_BODY: - return luaL_error(L, "r.req_attr['%s'] is read-only", key); } buffer * const dest = magnet_env_get_buffer_by_id(r, env_id); |