Diag-Client-Lib
Functions
uds_transport::anonymous_namespace{connection.h} Namespace Reference

Functions

template<typename... T>
std::string Append (T... args)
 
std::string CreateConnectionName (std::string_view connection_name, std::uint8_t connection_id)
 Function to append the connection id to the connection name. More...
 

Function Documentation

◆ Append()

template<typename... T>
std::string uds_transport::anonymous_namespace{connection.h}::Append ( T...  args)

Definition at line 25 of file connection.h.

25  {
26  std::string appended_name{};
27  (appended_name.append(args), ...);
28  return appended_name;
29 }

◆ CreateConnectionName()

std::string uds_transport::anonymous_namespace{connection.h}::CreateConnectionName ( std::string_view  connection_name,
std::uint8_t  connection_id 
)
inline

Function to append the connection id to the connection name.

Definition at line 34 of file connection.h.

35  {
36  std::string final_connection_name{connection_name};
37  final_connection_name.append(std::to_string(connection_id));
38  return final_connection_name;
39 }