/* 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 Generated by OpenAPI Generator: https://openapi-generator.tech */ syntax = "proto3"; package mec029; option java_multiple_files=true; 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; // 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; // 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; // 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; // Timeout in milliseconds for the trace route test. int32 timeout = 7; }