mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
network_conf: Expose virNetworkDefFormatInternal
In the next patch I'm going to need the network format function that takes virBuffer as argument. However, slightly change of name is more appropriate then: virNetworkDefFormatBuf to match the rest of functions that format an object to buffer. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
5fc590ad9f
commit
e0a31274ec
@ -2593,10 +2593,10 @@ cleanup:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int
|
||||
virNetworkDefFormatInternal(virBufferPtr buf,
|
||||
const virNetworkDef *def,
|
||||
unsigned int flags)
|
||||
int
|
||||
virNetworkDefFormatBuf(virBufferPtr buf,
|
||||
const virNetworkDef *def,
|
||||
unsigned int flags)
|
||||
{
|
||||
const unsigned char *uuid;
|
||||
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
||||
@ -2763,7 +2763,7 @@ virNetworkDefFormat(const virNetworkDef *def,
|
||||
{
|
||||
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
||||
|
||||
if (virNetworkDefFormatInternal(&buf, def, flags) < 0)
|
||||
if (virNetworkDefFormatBuf(&buf, def, flags) < 0)
|
||||
goto error;
|
||||
|
||||
if (virBufferError(&buf))
|
||||
@ -2794,7 +2794,7 @@ virNetworkObjFormat(virNetworkObjPtr net,
|
||||
VIR_FREE(class_id);
|
||||
|
||||
virBufferAdjustIndent(&buf, 2);
|
||||
if (virNetworkDefFormatInternal(&buf, net->def, flags) < 0)
|
||||
if (virNetworkDefFormatBuf(&buf, net->def, flags) < 0)
|
||||
goto error;
|
||||
|
||||
virBufferAdjustIndent(&buf, -2);
|
||||
|
@ -338,6 +338,9 @@ virNetworkDefPtr virNetworkDefParseFile(const char *filename);
|
||||
virNetworkDefPtr virNetworkDefParseNode(xmlDocPtr xml,
|
||||
xmlNodePtr root);
|
||||
char *virNetworkDefFormat(const virNetworkDef *def, unsigned int flags);
|
||||
int virNetworkDefFormatBuf(virBufferPtr buf,
|
||||
const virNetworkDef *def,
|
||||
unsigned int flags);
|
||||
|
||||
static inline const char *
|
||||
virNetworkDefForwardIf(const virNetworkDef *def, size_t n)
|
||||
|
@ -505,6 +505,7 @@ virNetworkConfigChangeSetup;
|
||||
virNetworkConfigFile;
|
||||
virNetworkDefCopy;
|
||||
virNetworkDefFormat;
|
||||
virNetworkDefFormatBuf;
|
||||
virNetworkDefFree;
|
||||
virNetworkDefGetIpByIndex;
|
||||
virNetworkDefParseFile;
|
||||
|
Loading…
x
Reference in New Issue
Block a user