/[LeafOK_CVS]/lbbs/src/bbs_net.c
ViewVC logotype

Diff of /lbbs/src/bbs_net.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.105 by sysadm, Sat Dec 20 03:24:01 2025 UTC Revision 1.106 by sysadm, Sat Dec 20 07:18:36 2025 UTC
# Line 1252  static int bbsnet_connect(int n) Line 1252  static int bbsnet_connect(int n)
1252  #ifdef _DEBUG  #ifdef _DEBUG
1253                                  for (int j = input_buf_offset; j < input_buf_len; j++)                                  for (int j = input_buf_offset; j < input_buf_len; j++)
1254                                  {                                  {
1255                                          log_debug("input: <--[%u]", (input_buf[j] + 256) % 256);                                          log_debug("input: <--[%u]", (unsigned char)(input_buf[j]));
1256                                  }                                  }
1257  #endif  #endif
1258    
# Line 1267  static int bbsnet_connect(int n) Line 1267  static int bbsnet_connect(int n)
1267  #ifdef _DEBUG  #ifdef _DEBUG
1268                                  for (int j = input_conv_offset; j < input_conv_len; j++)                                  for (int j = input_conv_offset; j < input_conv_len; j++)
1269                                  {                                  {
1270                                          log_debug("input_conv: <--[%u]", (input_conv[j] + 256) % 256);                                          log_debug("input_conv: <--[%u]", (unsigned char)(input_conv[j]));
1271                                  }                                  }
1272  #endif  #endif
1273                          }                          }


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1