⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xen_vif.c

📁 xen虚拟机源代码安装包
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * Copyright (c) 2006-2007, XenSource 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, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA */#include <stddef.h>#include <stdlib.h>#include "xen_internal.h"#include <xen/api/xen_common.h>#include <xen/api/xen_network.h>#include <xen/api/xen_string_string_map.h>#include <xen/api/xen_vif.h>#include <xen/api/xen_vif_metrics.h>#include <xen/api/xen_vm.h>XEN_FREE(xen_vif)XEN_SET_ALLOC_FREE(xen_vif)XEN_ALLOC(xen_vif_record)XEN_SET_ALLOC_FREE(xen_vif_record)XEN_ALLOC(xen_vif_record_opt)XEN_RECORD_OPT_FREE(xen_vif)XEN_SET_ALLOC_FREE(xen_vif_record_opt)static const struct_member xen_vif_record_struct_members[] =    {        { .key = "uuid",          .type = &abstract_type_string,          .offset = offsetof(xen_vif_record, uuid) },        { .key = "device",          .type = &abstract_type_string,          .offset = offsetof(xen_vif_record, device) },        { .key = "network",          .type = &abstract_type_ref,          .offset = offsetof(xen_vif_record, network) },        { .key = "VM",          .type = &abstract_type_ref,          .offset = offsetof(xen_vif_record, vm) },        { .key = "MAC",          .type = &abstract_type_string,          .offset = offsetof(xen_vif_record, mac) },        { .key = "MTU",          .type = &abstract_type_int,          .offset = offsetof(xen_vif_record, mtu) },        { .key = "currently_attached",          .type = &abstract_type_bool,          .offset = offsetof(xen_vif_record, currently_attached) },        { .key = "status_code",          .type = &abstract_type_int,          .offset = offsetof(xen_vif_record, status_code) },        { .key = "status_detail",          .type = &abstract_type_string,          .offset = offsetof(xen_vif_record, status_detail) },        { .key = "runtime_properties",          .type = &abstract_type_string_string_map,          .offset = offsetof(xen_vif_record, runtime_properties) },        { .key = "qos_algorithm_type",          .type = &abstract_type_string,          .offset = offsetof(xen_vif_record, qos_algorithm_type) },        { .key = "qos_algorithm_params",          .type = &abstract_type_string_string_map,          .offset = offsetof(xen_vif_record, qos_algorithm_params) },        { .key = "qos_supported_algorithms",          .type = &abstract_type_string_set,          .offset = offsetof(xen_vif_record, qos_supported_algorithms) },        { .key = "metrics",          .type = &abstract_type_ref,          .offset = offsetof(xen_vif_record, metrics) }    };const abstract_type xen_vif_record_abstract_type_ =    {       .typename = STRUCT,       .struct_size = sizeof(xen_vif_record),       .member_count =           sizeof(xen_vif_record_struct_members) / sizeof(struct_member),       .members = xen_vif_record_struct_members    };voidxen_vif_record_free(xen_vif_record *record){    if (record == NULL)    {        return;    }    free(record->handle);    free(record->uuid);    free(record->device);    xen_network_record_opt_free(record->network);    xen_vm_record_opt_free(record->vm);    free(record->mac);    free(record->status_detail);    xen_string_string_map_free(record->runtime_properties);    free(record->qos_algorithm_type);    xen_string_string_map_free(record->qos_algorithm_params);    xen_string_set_free(record->qos_supported_algorithms);    xen_vif_metrics_record_opt_free(record->metrics);    free(record);}boolxen_vif_get_record(xen_session *session, xen_vif_record **result, xen_vif vif){    abstract_value param_values[] =        {            { .type = &abstract_type_string,              .u.string_val = vif }        };    abstract_type result_type = xen_vif_record_abstract_type_;    *result = NULL;    XEN_CALL_("VIF.get_record");    if (session->ok)    {       (*result)->handle = xen_strdup_((*result)->uuid);    }    return session->ok;}boolxen_vif_get_by_uuid(xen_session *session, xen_vif *result, char *uuid){    abstract_value param_values[] =        {            { .type = &abstract_type_string,              .u.string_val = uuid }        };    abstract_type result_type = abstract_type_string;    *result = NULL;    XEN_CALL_("VIF.get_by_uuid");    return session->ok;}boolxen_vif_create(xen_session *session, xen_vif *result, xen_vif_record *record){    abstract_value param_values[] =        {            { .type = &xen_vif_record_abstract_type_,              .u.struct_val = record }        };    abstract_type result_type = abstract_type_string;    *result = NULL;    XEN_CALL_("VIF.create");    return session->ok;}boolxen_vif_destroy(xen_session *session, xen_vif vif){    abstract_value param_values[] =        {            { .type = &abstract_type_string,              .u.string_val = vif }        };    xen_call_(session, "VIF.destroy", param_values, 1, NULL, NULL);    return session->ok;}boolxen_vif_get_device(xen_session *session, char **result, xen_vif vif){    abstract_value param_values[] =        {            { .type = &abstract_type_string,              .u.string_val = vif }        };    abstract_type result_type = abstract_type_string;    *result = NULL;    XEN_CALL_("VIF.get_device");    return session->ok;}boolxen_vif_get_network(xen_session *session, xen_network *result, xen_vif vif){    abstract_value param_values[] =        {            { .type = &abstract_type_string,              .u.string_val = vif }        };    abstract_type result_type = abstract_type_string;    *result = NULL;    XEN_CALL_("VIF.get_network");    return session->ok;}boolxen_vif_get_vm(xen_session *session, xen_vm *result, xen_vif vif){    abstract_value param_values[] =        {            { .type = &abstract_type_string,              .u.string_val = vif }        };    abstract_type result_type = abstract_type_string;    *result = NULL;    XEN_CALL_("VIF.get_VM");    return session->ok;}boolxen_vif_get_mac(xen_session *session, char **result, xen_vif vif){    abstract_value param_values[] =        {            { .type = &abstract_type_string,              .u.string_val = vif }        };    abstract_type result_type = abstract_type_string;    *result = NULL;    XEN_CALL_("VIF.get_MAC");    return session->ok;}boolxen_vif_get_mtu(xen_session *session, int64_t *result, xen_vif vif){    abstract_value param_values[] =        {            { .type = &abstract_type_string,              .u.string_val = vif }        };    abstract_type result_type = abstract_type_int;    XEN_CALL_("VIF.get_MTU");    return session->ok;}boolxen_vif_get_currently_attached(xen_session *session, bool *result, xen_vif vif){    abstract_value param_values[] =        {            { .type = &abstract_type_string,              .u.string_val = vif }        };    abstract_type result_type = abstract_type_bool;    XEN_CALL_("VIF.get_currently_attached");    return session->ok;}boolxen_vif_get_status_code(xen_session *session, int64_t *result, xen_vif vif){    abstract_value param_values[] =        {            { .type = &abstract_type_string,              .u.string_val = vif }        };    abstract_type result_type = abstract_type_int;    XEN_CALL_("VIF.get_status_code");    return session->ok;}boolxen_vif_get_status_detail(xen_session *session, char **result, xen_vif vif){

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -