home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / c / cuj9301.zip / 1101069A < prev    next >
Text File  |  1992-11-03  |  597b  |  26 lines

  1. static boolean
  2. fgsend_control (ixxx, iyyy)
  3.      int ixxx;
  4.      int iyyy;
  5. {
  6.   char ab[CFRAMELEN];
  7.   int ictl;
  8.   unsigned short icheck;
  9.  
  10.   ab[IFRAME_DLE] = DLE;
  11.   ab[IFRAME_K] = KCONTROL;
  12.  
  13.   ictl = (CONTROL << 6) | (ixxx << 3) | iyyy;
  14.   icheck = (unsigned short) (0xaaaa - ictl);
  15.   ab[IFRAME_CHECKLOW] = (char) (icheck & 0xff);
  16.   ab[IFRAME_CHECKHIGH] = (char) (icheck >> 8);
  17.  
  18.   ab[IFRAME_CONTROL] = (char) ictl;
  19.  
  20.   ab[IFRAME_XOR] = (char) (ab[IFRAME_K] ^ ab[IFRAME_CHECKLOW]
  21.                ^ ab[IFRAME_CHECKHIGH] ^ ab[IFRAME_CONTROL]);
  22.  
  23.   return fsend_data (ab, CFRAMELEN, TRUE);
  24. }
  25.  
  26.