指定通信协议



我正试图记录两个现有系统之间的通信,这两个系统目前非常糟糕。我想知道是否有任何标准或最佳实践来记录我可以使用的网络通信协议?有几种特殊类型必须记录并混合位顺序

通信很简单,就像这个(伪代码)

系统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

您可能会看到抽象语法符号一。

相关内容

  • 没有找到相关文章

最新更新