Commit 93e6dd70 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Constify

parent 63bb0b48
......@@ -223,8 +223,8 @@ void H2_Send_Frame(struct worker *, struct h2_sess *,
h2_frame type, uint8_t flags, uint32_t len, uint32_t stream,
const void *);
void H2_Send_RST(struct worker *wrk, struct h2_sess *h2, struct h2_req *r2,
uint32_t stream, h2_error h2e);
void H2_Send_RST(struct worker *wrk, struct h2_sess *h2,
const struct h2_req *r2, uint32_t stream, h2_error h2e);
void H2_Send(struct worker *, struct h2_req *, h2_frame type, uint8_t flags,
uint32_t len, const void *, uint64_t *acct);
......
......@@ -392,7 +392,7 @@ h2_send(struct worker *wrk, struct h2_req *r2, h2_frame ftyp, uint8_t flags,
}
void
H2_Send_RST(struct worker *wrk, struct h2_sess *h2, struct h2_req *r2,
H2_Send_RST(struct worker *wrk, struct h2_sess *h2, const struct h2_req *r2,
uint32_t stream, h2_error h2e)
{
char b[4];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment