#include <OpenIPMI/ipmi_types.h>#include <OpenIPMI/ipmi_sdr.h>#include <OpenIPMI/ipmi_bits.h>Go to the source code of this file.
|
|
Definition at line 425 of file ipmi_mc.h. Referenced by got_chan_access(), ipmi_channel_access_mode_string(), and mc_set_chan_access(). |
|
|
Definition at line 423 of file ipmi_mc.h. Referenced by got_chan_access(), ipmi_channel_access_mode_string(), and mc_set_chan_access(). |
|
|
Definition at line 424 of file ipmi_mc.h. Referenced by got_chan_access(), ipmi_channel_access_mode_string(), and mc_set_chan_access(). |
|
|
Definition at line 426 of file ipmi_mc.h. Referenced by got_chan_access(), ipmi_channel_access_mode_string(), and mc_set_chan_access(). |
|
|
Definition at line 340 of file ipmi_mc.h. Referenced by ipmi_channel_medium_string(). |
|
|
Definition at line 339 of file ipmi_mc.h. Referenced by ipmi_channel_medium_string(). |
|
|
Definition at line 338 of file ipmi_mc.h. Referenced by ipmi_channel_medium_string(). |
|
|
Definition at line 337 of file ipmi_mc.h. Referenced by ipmi_channel_medium_string(), ipmi_domain_start_full_ipmb_scan(), and matching_domain_sysaddr(). |
|
|
Definition at line 342 of file ipmi_mc.h. Referenced by ipmi_channel_medium_string(). |
|
|
Definition at line 343 of file ipmi_mc.h. Referenced by ipmi_channel_medium_string(). |
|
|
Definition at line 341 of file ipmi_mc.h. Referenced by ipmi_channel_medium_string(). |
|
|
Definition at line 344 of file ipmi_mc.h. Referenced by ipmi_channel_medium_string(). |
|
|
Definition at line 345 of file ipmi_mc.h. Referenced by ipmi_channel_medium_string(). |
|
|
Definition at line 348 of file ipmi_mc.h. Referenced by ipmi_channel_medium_string(). |
|
|
Definition at line 346 of file ipmi_mc.h. Referenced by ipmi_channel_medium_string(). |
|
|
Definition at line 347 of file ipmi_mc.h. Referenced by ipmi_channel_medium_string(). |
|
|
Definition at line 366 of file ipmi_mc.h. Referenced by dump_chan_info(), and ipmi_channel_session_support_string(). |
|
|
Definition at line 357 of file ipmi_mc.h. Referenced by ipmi_channel_protocol_string(). |
|
|
Definition at line 358 of file ipmi_mc.h. Referenced by ipmi_channel_protocol_string(). |
|
|
Definition at line 353 of file ipmi_mc.h. Referenced by ipmi_channel_protocol_string(). |
|
|
Definition at line 352 of file ipmi_mc.h. Referenced by ipmi_channel_protocol_string(). |
|
|
Definition at line 355 of file ipmi_mc.h. Referenced by ipmi_channel_protocol_string(). |
|
|
Definition at line 354 of file ipmi_mc.h. Referenced by ipmi_channel_protocol_string(). |
|
|
Definition at line 356 of file ipmi_mc.h. Referenced by ipmi_channel_protocol_string(). |
|
|
Definition at line 359 of file ipmi_mc.h. Referenced by ipmi_channel_protocol_string(). |
|
|
Definition at line 367 of file ipmi_mc.h. Referenced by dump_chan_info(), and ipmi_channel_session_support_string(). |
|
|
Definition at line 364 of file ipmi_mc.h. Referenced by dump_chan_info(), and ipmi_channel_session_support_string(). |
|
|
Definition at line 365 of file ipmi_mc.h. Referenced by dump_chan_info(), and ipmi_channel_session_support_string(). |
|
|
|
Definition at line 151 of file ipmi_mc.h. Referenced by ipmi_mc_reset(), mc_reset(), and mc_reset_cmd(). |
|
|
Definition at line 152 of file ipmi_mc.h. Referenced by ipmi_mc_reset(), mc_reset(), and mc_reset_cmd(). |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 4291 of file mc.c. References ipmi_mem_alloc(). 04292 { 04293 ipmi_channel_access_t *rv = ipmi_mem_alloc(sizeof(*rv)); 04294 if (!rv) 04295 return NULL; 04296 memcpy(rv, access, sizeof(*rv)); 04297 return rv; 04298 }
|
|
|
Definition at line 4301 of file mc.c. References ipmi_mem_free(). 04302 { 04303 ipmi_mem_free(access); 04304 }
|
|
||||||||||||
|
Definition at line 4366 of file mc.c. References ipmi_channel_access_s::access_mode_val. Referenced by got_chan_access().
|
|
||||||||||||
|
Definition at line 4315 of file mc.c. References ipmi_channel_access_s::alert_val. Referenced by got_chan_access().
|
|
||||||||||||
|
Definition at line 4307 of file mc.c. References ipmi_channel_access_s::channel. Referenced by got_chan_access(), and set_chan_access1().
|
|
||||||||||||
|
Definition at line 4332 of file mc.c. References ipmi_channel_access_s::msg_auth_val. Referenced by got_chan_access().
|
|
||||||||||||
|
Definition at line 4383 of file mc.c. References ipmi_channel_access_s::privilege_val. Referenced by got_chan_access().
|
|
||||||||||||
|
Definition at line 4349 of file mc.c. References ipmi_channel_access_s::user_auth_val. Referenced by got_chan_access().
|
|
|
Definition at line 1482 of file strings.c. References IPMI_CHANNEL_ACCESS_MODE_ALWAYS, IPMI_CHANNEL_ACCESS_MODE_DISABLED, IPMI_CHANNEL_ACCESS_MODE_PRE_BOOT, and IPMI_CHANNEL_ACCESS_MODE_SHARED. 01483 { 01484 switch (val) { 01485 case IPMI_CHANNEL_ACCESS_MODE_DISABLED: 01486 return "DISABLED"; 01487 case IPMI_CHANNEL_ACCESS_MODE_PRE_BOOT: 01488 return "PRE_BOOT"; 01489 case IPMI_CHANNEL_ACCESS_MODE_ALWAYS: 01490 return "ALWAYS"; 01491 case IPMI_CHANNEL_ACCESS_MODE_SHARED: 01492 return "SHARED"; 01493 default: 01494 return "invalid"; 01495 } 01496 }
|
|
||||||||||||
|
Definition at line 4374 of file mc.c. References ipmi_channel_access_s::access_mode_set, and ipmi_channel_access_s::access_mode_val. Referenced by set_chan_access1(). 04376 { 04377 info->access_mode_val = access_mode; 04378 info->access_mode_set = 1; 04379 return 0; 04380 }
|
|
||||||||||||
|
Definition at line 4323 of file mc.c. References ipmi_channel_access_s::alert_set, and ipmi_channel_access_s::alert_val. Referenced by set_chan_access1().
|
|
||||||||||||
|
Definition at line 4340 of file mc.c. References ipmi_channel_access_s::msg_auth_set, and ipmi_channel_access_s::msg_auth_val. Referenced by set_chan_access1().
|
|
||||||||||||
|
Definition at line 4391 of file mc.c. References ipmi_channel_access_s::privilege_set, and ipmi_channel_access_s::privilege_val. Referenced by set_chan_access1(). 04393 { 04394 info->privilege_val = priv_limit; 04395 info->privilege_set = 1; 04396 return 0; 04397 }
|
|
||||||||||||
|
Definition at line 4357 of file mc.c. References ipmi_channel_access_s::user_auth_set, and ipmi_channel_access_s::user_auth_val. Referenced by set_chan_access1(). 04359 { 04360 info->user_auth_val = user_auth; 04361 info->user_auth_set = 1; 04362 return 0; 04363 }
|
|
|
Definition at line 4400 of file mc.c. References ipmi_channel_access_s::access_mode_set, ipmi_channel_access_s::alert_set, ipmi_channel_access_s::msg_auth_set, ipmi_channel_access_s::privilege_set, and ipmi_channel_access_s::user_auth_set. 04401 { 04402 info->alert_set = 1; 04403 info->msg_auth_set = 1; 04404 info->user_auth_set = 1; 04405 info->access_mode_set = 1; 04406 info->privilege_set = 1; 04407 return 0; 04408 }
|
|
|
Definition at line 4059 of file mc.c. References ipmi_mem_alloc(). 04060 { 04061 ipmi_channel_info_t *rv = ipmi_mem_alloc(sizeof(*rv)); 04062 if (!rv) 04063 return NULL; 04064 memcpy(rv, info, sizeof(*rv)); 04065 return rv; 04066 }
|
|
|
Definition at line 4069 of file mc.c. References ipmi_mem_free(). 04070 { 04071 ipmi_mem_free(info); 04072 }
|
|
||||||||||||
|
Definition at line 4115 of file mc.c. References ipmi_channel_info_s::aux_info. Referenced by dump_chan_info(). 04117 { 04118 memcpy(data, info->aux_info, 2); 04119 return 0; 04120 }
|
|
||||||||||||
|
Definition at line 4075 of file mc.c. References ipmi_channel_info_s::channel. Referenced by dump_chan_info(). 04077 { 04078 *channel = info->channel; 04079 return 0; 04080 }
|
|
||||||||||||
|
Definition at line 4083 of file mc.c. References ipmi_channel_info_s::medium. Referenced by dump_chan_info(). 04085 { 04086 *medium = info->medium; 04087 return 0; 04088 }
|
|
||||||||||||
|
Definition at line 4091 of file mc.c. References ipmi_channel_info_s::protocol. Referenced by dump_chan_info(). 04093 { 04094 *prot_type = info->protocol; 04095 return 0; 04096 }
|
|
||||||||||||
|
Definition at line 4099 of file mc.c. References ipmi_channel_info_s::session_support. Referenced by dump_chan_info(). 04101 { 04102 *sup = info->session_support; 04103 return 0; 04104 }
|
|
||||||||||||
|
Definition at line 4107 of file mc.c. References ipmi_channel_info_s::vendor_id. Referenced by |