B
–
4
Appendix B
int result, bytes_more, bytes_xferd;
char *idxPtr;
if (sConnectedFlag != TRUE)
return -1;
if (len < CMD_BUF_LEN)
strcpy(sCommandBuffer, buf);
// set the header info
header.bEOI_Flag = DATA_FLAG;
header.bEOI_Flag |= (eoi_flag)? EOI_FLAG:0;
header.reserved[0] = 1;
header.reserved[1] = 0;
header.reserved[2] = 0;
header.iLength = htonl(len);
// write the header first
if (send(hSocket, (char *) &header, sizeof(TCP_HEADER), 0) != sizeof(TCP_HEADER))
{
MessageBox(0, "Unable to send header info to the server.", "ERROR", MB_OK);
return -1;
}
bytes_more = len;
idxPtr = buf;
bytes_xferd = 0;
while (1)
{
// then write the rest of the block
idxPtr = buf + bytes_xferd;
if ((result = send(hSocket, (char *) idxPtr, bytes_more, 0)) < 0)
{
MessageBox(0, "Unable to send data to the server.", "ERROR",
MB_OK);
return -1;
}
bytes= result;
bytes_more -= result;
if (bytes_more <= 0)
break;
}
return 0;
}
Summary of Contents for LSA1000
Page 2: ...Operator s Manual LeCroy LSA1000 Signalyst Revision B October 1998 ...
Page 6: ...iii Contents ...
Page 9: ...v Foreword ...
Page 14: ...1 1 Read This First 1 ...
Page 28: ......
Page 29: ...2 1 2 About the LSA1000 ...
Page 34: ...3 1 3 Installation and Safety ...
Page 42: ...4 8 Connecting to PC or Network Example of responses for IDN and CONET queries ...
Page 43: ...4 1 4 Connecting to PC or Network ...
Page 55: ...5 12 LSA1000 Software Tools Remote LSA display of LSA1000 s External Reference Out Waveform ...
Page 63: ...5 20 LSA1000 Software Tools ...
Page 66: ...5 1 5 LSA1000 Software Tools ...
Page 72: ......
Page 73: ...A 1 A Appendix A Specifications ...
Page 83: ......
Page 84: ...B 1 Appendix B NET_CON Source Code B ...
Page 96: ......
Page 97: ...C 1 C Appendix C Parameter Measurement ...
Page 104: ...D 1 D Appendix D Program Examples ...
Page 107: ...E 1 E Appendix E Suggestion Forms ...
Page 108: ...Index ...
Page 109: ......
Page 114: ...Index ...