mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
c8238579fb
Historically, we declared pointer type to our types: typedef struct _virXXX virXXX; typedef virXXX *virXXXPtr; But usefulness of such declaration is questionable, at best. Unfortunately, we can't drop every such declaration - we have to carry some over, because they are part of public API (e.g. virDomainPtr). But for internal types - we can do drop them and use what every other C project uses 'virXXX *'. This change was generated by a very ugly shell script that generated sed script which was then called over each file in the repository. For the shell script refer to the cover letter: https://listman.redhat.com/archives/libvir-list/2021-March/msg00537.html Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
95 lines
2.6 KiB
C
95 lines
2.6 KiB
C
#include <config.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include "viralloc.h"
|
|
#include "virstring.h"
|
|
#include "virnetdev.h"
|
|
#include "virnetdevtap.h"
|
|
#include "virmock.h"
|
|
#include "internal.h"
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_BHYVE
|
|
|
|
static DIR * (*real_opendir)(const char *name);
|
|
|
|
static void
|
|
init_syms(void)
|
|
{
|
|
VIR_MOCK_REAL_INIT(opendir);
|
|
}
|
|
|
|
#define FAKEFIRMWAREDIR abs_srcdir "/bhyvefirmwaredata/three_firmwares"
|
|
#define FAKEFIRMWAREEMPTYDIR abs_srcdir "/bhyvefirmwaredata/empty"
|
|
|
|
DIR *
|
|
opendir(const char *path)
|
|
{
|
|
init_syms();
|
|
|
|
g_autofree char *path_override = NULL;
|
|
|
|
if (STREQ(path, "fakefirmwaredir")) {
|
|
path_override = g_strdup(FAKEFIRMWAREDIR);
|
|
} else if (STREQ(path, "fakefirmwareemptydir")) {
|
|
path_override = g_strdup(FAKEFIRMWAREEMPTYDIR);
|
|
}
|
|
|
|
if (!path_override)
|
|
path_override = g_strdup(path);
|
|
|
|
return real_opendir(path_override);
|
|
}
|
|
|
|
void virMacAddrGenerate(const unsigned char prefix[VIR_MAC_PREFIX_BUFLEN],
|
|
virMacAddr *addr)
|
|
{
|
|
addr->addr[0] = prefix[0];
|
|
addr->addr[1] = prefix[1];
|
|
addr->addr[2] = prefix[2];
|
|
addr->addr[3] = 0;
|
|
addr->addr[4] = 0;
|
|
addr->addr[5] = 0;
|
|
}
|
|
|
|
int virNetDevTapCreateInBridgePort(const char *brname G_GNUC_UNUSED,
|
|
char **ifname,
|
|
const virMacAddr *macaddr G_GNUC_UNUSED,
|
|
const unsigned char *vmuuid G_GNUC_UNUSED,
|
|
const char *tunpath G_GNUC_UNUSED,
|
|
int *tapfd G_GNUC_UNUSED,
|
|
size_t tapfdSize G_GNUC_UNUSED,
|
|
const virNetDevVPortProfile *virtPortProfile G_GNUC_UNUSED,
|
|
const virNetDevVlan *virtVlan G_GNUC_UNUSED,
|
|
virTristateBool isolatedPort G_GNUC_UNUSED,
|
|
virNetDevCoalesce *coalesce G_GNUC_UNUSED,
|
|
unsigned int mtu G_GNUC_UNUSED,
|
|
unsigned int *actualMTU G_GNUC_UNUSED,
|
|
unsigned int fakeflags G_GNUC_UNUSED)
|
|
{
|
|
VIR_FREE(*ifname);
|
|
*ifname = g_strdup("vnet0");
|
|
return 0;
|
|
}
|
|
|
|
char *virNetDevTapGetRealDeviceName(char *name G_GNUC_UNUSED)
|
|
{
|
|
char *fakename;
|
|
|
|
fakename = g_strdup("faketapdev");
|
|
return fakename;
|
|
}
|
|
|
|
int virNetDevSetOnline(const char *ifname G_GNUC_UNUSED,
|
|
bool online G_GNUC_UNUSED)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int bind(int sockfd G_GNUC_UNUSED,
|
|
const struct sockaddr *addr G_GNUC_UNUSED,
|
|
socklen_t addrlen G_GNUC_UNUSED)
|
|
{
|
|
return 0;
|
|
}
|