Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
4cff75a4
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4cff75a4
编写于
6月 07, 2011
作者:
L
Lai Jiangshan
提交者:
Eric Blake
6月 14, 2011
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
send-key: Implementing the remote protocol
Signed-off-by:
N
Lai Jiangshan
<
laijs@cn.fujitsu.com
>
上级
e138d310
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
26 addition
and
1 deletion
+26
-1
src/remote/remote_driver.c
src/remote/remote_driver.c
+1
-0
src/remote/remote_protocol.x
src/remote/remote_protocol.x
+15
-1
src/remote_protocol-structs
src/remote_protocol-structs
+10
-0
未找到文件。
src/remote/remote_driver.c
浏览文件 @
4cff75a4
...
@@ -6338,6 +6338,7 @@ static virDriver remote_driver = {
...
@@ -6338,6 +6338,7 @@ static virDriver remote_driver = {
.
domainMigratePerform3
=
remoteDomainMigratePerform3
,
/* 0.9.2 */
.
domainMigratePerform3
=
remoteDomainMigratePerform3
,
/* 0.9.2 */
.
domainMigrateFinish3
=
remoteDomainMigrateFinish3
,
/* 0.9.2 */
.
domainMigrateFinish3
=
remoteDomainMigrateFinish3
,
/* 0.9.2 */
.
domainMigrateConfirm3
=
remoteDomainMigrateConfirm3
,
/* 0.9.2 */
.
domainMigrateConfirm3
=
remoteDomainMigrateConfirm3
,
/* 0.9.2 */
.
domainSendKey
=
remoteDomainSendKey
,
/* 0.9.3 */
};
};
static
virNetworkDriver
network_driver
=
{
static
virNetworkDriver
network_driver
=
{
...
...
src/remote/remote_protocol.x
浏览文件 @
4cff75a4
...
@@ -191,6 +191,11 @@ const REMOTE_SECRET_UUID_LIST_MAX = 16384;
...
@@ -191,6 +191,11 @@ const REMOTE_SECRET_UUID_LIST_MAX = 16384;
*/
*/
const
REMOTE_CPU_BASELINE_MAX
=
256
;
const
REMOTE_CPU_BASELINE_MAX
=
256
;
/*
* Max number of sending keycodes.
*/
const
REMOTE_DOMAIN_SEND_KEY_MAX
=
16
;
/* UUID. VIR_UUID_BUFLEN definition comes from libvirt.h */
/* UUID. VIR_UUID_BUFLEN definition comes from libvirt.h */
typedef
opaque
remote_uuid
[
VIR_UUID_BUFLEN
];
typedef
opaque
remote_uuid
[
VIR_UUID_BUFLEN
];
...
@@ -811,6 +816,14 @@ struct remote_domain_inject_nmi_args {
...
@@ -811,6 +816,14 @@ struct remote_domain_inject_nmi_args {
unsigned
int
flags
;
unsigned
int
flags
;
};
};
struct
remote_domain_send_key_args
{
remote_nonnull_domain
dom
;
unsigned
int
codeset
;
unsigned
int
holdtime
;
unsigned
int
keycodes
<
REMOTE_DOMAIN_SEND_KEY_MAX
>
;
unsigned
int
flags
;
};
struct
remote_domain_set_vcpus_args
{
struct
remote_domain_set_vcpus_args
{
remote_nonnull_domain
dom
;
remote_nonnull_domain
dom
;
unsigned
int
nvcpus
;
unsigned
int
nvcpus
;
...
@@ -2305,7 +2318,8 @@ enum remote_procedure {
...
@@ -2305,7 +2318,8 @@ enum remote_procedure {
REMOTE_PROC_INTERFACE_CHANGE_ROLLBACK
=
222
,
/* autogen autogen */
REMOTE_PROC_INTERFACE_CHANGE_ROLLBACK
=
222
,
/* autogen autogen */
REMOTE_PROC_DOMAIN_GET_SCHEDULER_PARAMETERS_FLAGS
=
223
,
/* skipgen autogen */
REMOTE_PROC_DOMAIN_GET_SCHEDULER_PARAMETERS_FLAGS
=
223
,
/* skipgen autogen */
REMOTE_PROC_DOMAIN_EVENT_CONTROL_ERROR
=
224
,
/* skipgen skipgen */
REMOTE_PROC_DOMAIN_EVENT_CONTROL_ERROR
=
224
,
/* skipgen skipgen */
REMOTE_PROC_DOMAIN_PIN_VCPU_FLAGS
=
225
/* skipgen autogen */
REMOTE_PROC_DOMAIN_PIN_VCPU_FLAGS
=
225
,
/* skipgen autogen */
REMOTE_PROC_DOMAIN_SEND_KEY
=
226
/* autogen autogen */
/*
/*
* Notice how the entries are grouped in sets of 10 ?
* Notice how the entries are grouped in sets of 10 ?
...
...
src/remote_protocol-structs
浏览文件 @
4cff75a4
...
@@ -505,6 +505,16 @@ struct remote_domain_inject_nmi_args {
...
@@ -505,6 +505,16 @@ struct remote_domain_inject_nmi_args {
remote_nonnull_domain
dom
;
remote_nonnull_domain
dom
;
u_int
flags
;
u_int
flags
;
};
};
struct
remote_domain_send_key_args
{
remote_nonnull_domain
dom
;
u_int
codeset
;
u_int
holdtime
;
struct
{
u_int
keycodes_len
;
u_int
*
keycodes_val
;
}
keycodes
;
u_int
flags
;
};
struct
remote_domain_set_vcpus_args
{
struct
remote_domain_set_vcpus_args
{
remote_nonnull_domain
dom
;
remote_nonnull_domain
dom
;
u_int
nvcpus
;
u_int
nvcpus
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录