mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 10:51:12 +00:00
318df5a05f
systemd-machined introduced a new method CreateMachineWithNetwork that obsoletes CreateMachine. It expects to be given a list of VETH/TAP device indexes for the host side device(s) associated with a container/machine. This falls back to the old CreateMachine method when the new one is not supported.
60 lines
2.0 KiB
C
60 lines
2.0 KiB
C
/*
|
|
* virsystemd.h: helpers for using systemd APIs
|
|
*
|
|
* Copyright (C) 2013 Red Hat, Inc.
|
|
*
|
|
* 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; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* 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, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef __VIR_SYSTEMD_H__
|
|
# define __VIR_SYSTEMD_H__
|
|
|
|
# include "internal.h"
|
|
|
|
char *virSystemdMakeScopeName(const char *name,
|
|
const char *drivername,
|
|
const char *slicename);
|
|
char *virSystemdMakeSliceName(const char *partition);
|
|
|
|
char *virSystemdMakeMachineName(const char *name,
|
|
const char *drivername,
|
|
bool privileged);
|
|
|
|
int virSystemdCreateMachine(const char *name,
|
|
const char *drivername,
|
|
bool privileged,
|
|
const unsigned char *uuid,
|
|
const char *rootdir,
|
|
pid_t pidleader,
|
|
bool iscontainer,
|
|
size_t nnicindexes,
|
|
int *nicindexes,
|
|
const char *partition);
|
|
|
|
int virSystemdTerminateMachine(const char *name,
|
|
const char *drivername,
|
|
bool privileged);
|
|
|
|
void virSystemdNotifyStartup(void);
|
|
|
|
int virSystemdCanSuspend(bool *result);
|
|
|
|
int virSystemdCanHibernate(bool *result);
|
|
|
|
int virSystemdCanHybridSleep(bool *result);
|
|
|
|
#endif /* __VIR_SYSTEMD_H__ */
|