trace_route_diagnostics.proto 1.16 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
  
  Generated by OpenAPI Generator: https://openapi-generator.tech
*/

syntax = "proto3";

package mec029;

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 dataBlockSize = 1;

  TraceRouteDiagnosticsDiagnosticsState diagnosticsState = 2;

  // 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 maxHopCount = 4;

  // Result parameter indicating the number of hops within the discovered route.  If a route could not be determined, this value shall be zero.
  int32 numberOfRouteHops = 5;

  // 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 responseTime = 6;

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

}