예제 #1
0
switch_rmac_info_t *
switch_api_rmac_info_get_internal(switch_handle_t rmac_handle)
{
    switch_rmac_info_t *rmac_info = NULL;
    _switch_handle_get(switch_rmac_info_t, switch_rmac_array, rmac_handle, rmac_info);
    return rmac_info;
}
예제 #2
0
switch_nhop_info_t *
switch_nhop_get(switch_handle_t nhop_handle)
{
    switch_nhop_info_t *nhop_info = NULL;
    _switch_handle_get(switch_nhop_info_t, switch_nhop_array, nhop_handle, nhop_info);
    return nhop_info;
}
예제 #3
0
switch_stp_info_t *
switch_api_stp_get_internal(switch_handle_t stg_handle)
{
    switch_stp_info_t *stp_info = NULL;
    _switch_handle_get(switch_stp_info_t, switch_stp_instance_array,
                   stg_handle, stp_info);
    return stp_info;
}
예제 #4
0
switch_sflow_match_entry_t *switch_sflow_ace_entry_get(
    switch_handle_t sflow_ace_handle) {
  switch_sflow_match_entry_t *sflow_ace_info = NULL;
  _switch_handle_get(switch_sflow_match_entry_t,
                     switch_sflow_ace_array,
                     sflow_ace_handle,
                     sflow_ace_info);
  return sflow_ace_info;
}
예제 #5
0
switch_neighbor_info_t *switch_neighbor_info_get(switch_handle_t handle) {
  switch_neighbor_info_t *neighbor_info = NULL;
  _switch_handle_get(
      switch_neighbor_info_t, switch_neighbor_array, handle, neighbor_info);
  return neighbor_info;
}
예제 #6
0
switch_sflow_info_t *switch_sflow_info_get(switch_handle_t sflow_handle) {
  switch_sflow_info_t *sflow_info = NULL;
  _switch_handle_get(
      switch_sflow_info_t, switch_sflow_array, sflow_handle, sflow_info);
  return sflow_info;
}