trace_route_diagnostics.proto 1.23 KB
Newer Older
piscione's avatar
piscione committed
/*
  ETSI GS MEC 029 Fixed Access Information API
 
  ETSI GS MEC 029 Fixed Access Information API described using OpenAPI.
 
  The version of the OpenAPI document: 2.1.1
  Contact: cti_support@etsi.org
piscione's avatar
piscione committed
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec029;

piscione's avatar
piscione committed
import public "models/trace_route_diagnostics_diagnostics_state.proto";

message TraceRouteDiagnostics {

  // Size of the data block in bytes to be sent for each trace route.
  int32 data_block_size = 1;
  TraceRouteDiagnosticsDiagnosticsState diagnostics_state = 2;
piscione's avatar
piscione committed

  // Host name or address of the host to find a route to.
  string host = 3;

  // The maximum number of hop used in outgoing probe packets. The default is 30 hops.
  int32 max_hop_count = 4;
piscione's avatar
piscione committed

  // Result parameter indicating the number of hops within the discovered route.  If a route could not be determined, this value shall be zero.
  int32 number_of_route_hops = 5;
piscione's avatar
piscione committed

  // Result parameter indicating the response time in milliseconds the most recent trace route test.  If a route could not be determined, this value shall be zero.
  int32 response_time = 6;
piscione's avatar
piscione committed

  // Timeout in milliseconds for the trace route test.
  int32 timeout = 7;

}