#pragma once
/***
This file is part of systemd.
Copyright 2013 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd 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 systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <stdbool.h>
#include "sd-bus.h"
/* When we cache a memfd block for reuse, we will truncate blocks
* longer than this in order not to keep too much data around. */
/* This determines at which minimum size we prefer sending memfds over
* sending vectors */
/* The size of the per-connection memory pool that we set up and where
* the kernel places our incoming messages */
struct memfd_cache {
int fd;
void *address;
};
int bus_kernel_connect(sd_bus *b);
int bus_kernel_take_fd(sd_bus *b);
int bus_kernel_drop_one(int fd);