我正在尝试记录两个现有系统之间的通信,这些系统今天非常糟糕。我想知道是否有任何标准或最佳实践来记录我可以使用的网络通信协议? 有几种必须记录的特殊类型和混合位顺序
通讯非常简单,就像这样(伪代码)
系统A->系统B (启动通信)
short type; //Little endian
系统B->系统A
short type; //Little endian
short count; //Little endian
//Start time
short NoOfDaysSince1970; //Big endian
int noOfMillisecoundsToday; //Big ending
if(type==1)
for(int i=0;i<count;i++)
char[20] name;
else
for(int i=0;i<count;i++)
float value; //platform specific float, Little ending
for(int i=0;i<count;i++)
short flag; //Big ending
//Stop time
short noOfDaysSince1970; //Big ending
int noOfMillisecoundsToday; //Big ending