mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-23 07:25:45 +00:00
CLEANUP: mux-quic: do not export qc_get_ncbuf
qc_get_ncbuf() is only used internally : thus its prototype in QUIC MUX include is not required.
This commit is contained in:
parent
2ee490f613
commit
a441ec9c7a
@ -18,7 +18,6 @@ struct qcs *qcs_new(struct qcc *qcc, uint64_t id, enum qcs_type type);
|
|||||||
void qcs_free(struct qcs *qcs);
|
void qcs_free(struct qcs *qcs);
|
||||||
|
|
||||||
struct buffer *qc_get_buf(struct qcs *qcs, struct buffer *bptr);
|
struct buffer *qc_get_buf(struct qcs *qcs, struct buffer *bptr);
|
||||||
struct ncbuf *qc_get_ncbuf(struct qcs *qcs, struct ncbuf *ncbuf);
|
|
||||||
|
|
||||||
int qcs_subscribe(struct qcs *qcs, int event_type, struct wait_event *es);
|
int qcs_subscribe(struct qcs *qcs, int event_type, struct wait_event *es);
|
||||||
void qcs_notify_recv(struct qcs *qcs);
|
void qcs_notify_recv(struct qcs *qcs);
|
||||||
|
@ -228,7 +228,7 @@ struct buffer *qc_get_buf(struct qcs *qcs, struct buffer *bptr)
|
|||||||
return buf;
|
return buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ncbuf *qc_get_ncbuf(struct qcs *qcs, struct ncbuf *ncbuf)
|
static struct ncbuf *qc_get_ncbuf(struct qcs *qcs, struct ncbuf *ncbuf)
|
||||||
{
|
{
|
||||||
struct buffer buf = BUF_NULL;
|
struct buffer buf = BUF_NULL;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user