COSMOS core  1.0.2 (beta)
Comprehensive Open-architecture Solution for Mission Operations Systems
ax25class.cpp File Reference
Include dependency graph for ax25class.cpp:

Functions

std::ostream & operator<< (std::ostream &out, Ax25Handle &K)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  out,
Ax25Handle K 
)
180  {
181  out<<"destination callsign=<"<< K.header.destination_callsign<<">"<<std::endl;
182  out<<"destination station ID="<< K.header.destination_stationID<<std::endl;
183  out<<"source callsign=<"<< K.header.source_callsign<<">"<<std::endl;
184  out<<"source station ID="<< K.header.source_stationID<<std::endl;
185  out<<"control="<< K.header.control<<std::endl;
186  out<<"protocol ID="<< K.header.protocolID<<std::endl;
187 
188  return out;
189 }
packet_header header
Definition: ax25class.h:84