mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-11 17:46:57 +02:00
As reported by Tim in issue #1428, our sources are clean, there are just a few files with a few rare non-ASCII chars for the paragraph symbol, a few typos, or in Fred's name. Given that Fred already uses the non-accentuated form at other places like on the public list, let's uniformize all this and make sure the code displays equally everywhere.
60 lines
1.5 KiB
C
60 lines
1.5 KiB
C
/*
|
|
* Circular buffer management
|
|
*
|
|
* Copyright 2021 HAProxy Technologies, Frederic Lecaille <flecaill@haproxy.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation, version 2.1
|
|
* exclusively.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include <haproxy/list.h>
|
|
#include <haproxy/pool.h>
|
|
#include <haproxy/cbuf-t.h>
|
|
|
|
DECLARE_POOL(pool_head_cbuf, "cbuf_pool", sizeof(struct cbuf));
|
|
|
|
/* Allocate and return a new circular buffer with <buf> as <sz> byte internal buffer
|
|
* if succeeded, NULL if not.
|
|
*/
|
|
struct cbuf *cbuf_new(unsigned char *buf, size_t sz)
|
|
{
|
|
struct cbuf *cbuf;
|
|
|
|
cbuf = pool_alloc(pool_head_cbuf);
|
|
if (cbuf) {
|
|
cbuf->sz = sz;
|
|
cbuf->buf = buf;
|
|
cbuf->wr = 0;
|
|
cbuf->rd = 0;
|
|
}
|
|
|
|
return cbuf;
|
|
}
|
|
|
|
/* Free QUIC ring <cbuf> */
|
|
void cbuf_free(struct cbuf *cbuf)
|
|
{
|
|
if (!cbuf)
|
|
return;
|
|
|
|
pool_free(pool_head_cbuf, cbuf);
|
|
}
|
|
|
|
/*
|
|
* Local variables:
|
|
* c-indent-level: 8
|
|
* c-basic-offset: 8
|
|
* End:
|
|
*/
|