Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
4e31e733
L
libvirt
项目概览
openeuler
/
libvirt
通知
3
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
libvirt
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
4e31e733
编写于
1月 21, 2013
作者:
P
Peter Krempa
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
virsh-network: Update network commands to use vshCommandOptStringReq
上级
edbdc45b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
7 addition
and
12 deletion
+7
-12
tools/virsh-network.c
tools/virsh-network.c
+7
-12
未找到文件。
tools/virsh-network.c
浏览文件 @
4e31e733
...
@@ -50,7 +50,7 @@ vshCommandOptNetworkBy(vshControl *ctl, const vshCmd *cmd,
...
@@ -50,7 +50,7 @@ vshCommandOptNetworkBy(vshControl *ctl, const vshCmd *cmd,
if
(
!
vshCmdHasOption
(
ctl
,
cmd
,
optname
))
if
(
!
vshCmdHasOption
(
ctl
,
cmd
,
optname
))
return
NULL
;
return
NULL
;
if
(
vshCommandOptString
(
cmd
,
optname
,
&
n
)
<=
0
)
if
(
vshCommandOptString
Req
(
ctl
,
cmd
,
optname
,
&
n
)
<
0
)
return
NULL
;
return
NULL
;
vshDebug
(
ctl
,
VSH_ERR_INFO
,
"%s: found option <%s>: %s
\n
"
,
vshDebug
(
ctl
,
VSH_ERR_INFO
,
"%s: found option <%s>: %s
\n
"
,
...
@@ -158,7 +158,7 @@ cmdNetworkCreate(vshControl *ctl, const vshCmd *cmd)
...
@@ -158,7 +158,7 @@ cmdNetworkCreate(vshControl *ctl, const vshCmd *cmd)
bool
ret
=
true
;
bool
ret
=
true
;
char
*
buffer
;
char
*
buffer
;
if
(
vshCommandOptString
(
cmd
,
"file"
,
&
from
)
<=
0
)
if
(
vshCommandOptString
Req
(
ctl
,
cmd
,
"file"
,
&
from
)
<
0
)
return
false
;
return
false
;
if
(
virFileReadAll
(
from
,
VSH_MAX_XML_FILE
,
&
buffer
)
<
0
)
if
(
virFileReadAll
(
from
,
VSH_MAX_XML_FILE
,
&
buffer
)
<
0
)
...
@@ -204,7 +204,7 @@ cmdNetworkDefine(vshControl *ctl, const vshCmd *cmd)
...
@@ -204,7 +204,7 @@ cmdNetworkDefine(vshControl *ctl, const vshCmd *cmd)
bool
ret
=
true
;
bool
ret
=
true
;
char
*
buffer
;
char
*
buffer
;
if
(
vshCommandOptString
(
cmd
,
"file"
,
&
from
)
<=
0
)
if
(
vshCommandOptString
Req
(
ctl
,
cmd
,
"file"
,
&
from
)
<
0
)
return
false
;
return
false
;
if
(
virFileReadAll
(
from
,
VSH_MAX_XML_FILE
,
&
buffer
)
<
0
)
if
(
virFileReadAll
(
from
,
VSH_MAX_XML_FILE
,
&
buffer
)
<
0
)
...
@@ -889,10 +889,8 @@ cmdNetworkUpdate(vshControl *ctl, const vshCmd *cmd)
...
@@ -889,10 +889,8 @@ cmdNetworkUpdate(vshControl *ctl, const vshCmd *cmd)
if
(
!
(
network
=
vshCommandOptNetwork
(
ctl
,
cmd
,
NULL
)))
if
(
!
(
network
=
vshCommandOptNetwork
(
ctl
,
cmd
,
NULL
)))
goto
cleanup
;
goto
cleanup
;
if
(
vshCommandOptString
(
cmd
,
"command"
,
&
commandStr
)
<
0
)
{
if
(
vshCommandOptStringReq
(
ctl
,
cmd
,
"command"
,
&
commandStr
)
<
0
)
vshError
(
ctl
,
"%s"
,
_
(
"missing or malformed command argument"
));
goto
cleanup
;
goto
cleanup
;
}
if
(
STREQ
(
commandStr
,
"add"
))
{
if
(
STREQ
(
commandStr
,
"add"
))
{
/* "add" is a synonym for "add-last" */
/* "add" is a synonym for "add-last" */
...
@@ -905,10 +903,9 @@ cmdNetworkUpdate(vshControl *ctl, const vshCmd *cmd)
...
@@ -905,10 +903,9 @@ cmdNetworkUpdate(vshControl *ctl, const vshCmd *cmd)
}
}
}
}
if
(
vshCommandOptString
(
cmd
,
"section"
,
&
sectionStr
)
<
0
)
{
if
(
vshCommandOptStringReq
(
ctl
,
cmd
,
"section"
,
&
sectionStr
)
<
0
)
vshError
(
ctl
,
"%s"
,
_
(
"missing or malformed section argument"
));
goto
cleanup
;
goto
cleanup
;
}
section
=
virNetworkSectionTypeFromString
(
sectionStr
);
section
=
virNetworkSectionTypeFromString
(
sectionStr
);
if
(
section
<=
0
||
section
>=
VIR_NETWORK_SECTION_LAST
)
{
if
(
section
<=
0
||
section
>=
VIR_NETWORK_SECTION_LAST
)
{
vshError
(
ctl
,
_
(
"unrecognized section name '%s'"
),
sectionStr
);
vshError
(
ctl
,
_
(
"unrecognized section name '%s'"
),
sectionStr
);
...
@@ -927,10 +924,8 @@ cmdNetworkUpdate(vshControl *ctl, const vshCmd *cmd)
...
@@ -927,10 +924,8 @@ cmdNetworkUpdate(vshControl *ctl, const vshCmd *cmd)
* the desired xml.
* the desired xml.
*/
*/
if
(
vshCommandOptString
(
cmd
,
"xml"
,
&
xml
)
<
0
)
{
if
(
vshCommandOptStringReq
(
ctl
,
cmd
,
"xml"
,
&
xml
)
<
0
)
vshError
(
ctl
,
"%s"
,
_
(
"malformed or missing xml argument"
));
goto
cleanup
;
goto
cleanup
;
}
if
(
*
xml
!=
'<'
)
{
if
(
*
xml
!=
'<'
)
{
/* contents of xmldata is actually the name of a file that
/* contents of xmldata is actually the name of a file that
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录