mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-13 05:17:13 +02:00
ctb server: added brackets around char* in write to socket
This commit is contained in:
@ -31,9 +31,9 @@ int myport=-1;
|
|||||||
//struct sockaddr_in address;
|
//struct sockaddr_in address;
|
||||||
//#define VERBOSE
|
//#define VERBOSE
|
||||||
|
|
||||||
#define BLACKFIN_DRVR_SND_LMT 30000 // rough limit
|
#define BLACKFIN_DRVR_SND_LMT (30000) // rough limit
|
||||||
#define BLACKFIN_RSND_PCKT_LOOP 10
|
#define BLACKFIN_RSND_PCKT_LOOP (10)
|
||||||
#define BLACKFIN_RSND_WAIT_US (10 * 1000)
|
#define BLACKFIN_RSND_WAIT_US (1)
|
||||||
|
|
||||||
int bindSocket(unsigned short int port_number) {
|
int bindSocket(unsigned short int port_number) {
|
||||||
int i;
|
int i;
|
||||||
@ -332,7 +332,7 @@ int sendDataOnly(int file_des, void* buf,int length) {
|
|||||||
bytesToSend = BLACKFIN_DRVR_SND_LMT;
|
bytesToSend = BLACKFIN_DRVR_SND_LMT;
|
||||||
|
|
||||||
// send
|
// send
|
||||||
int rc = write(file_des, (char*)buf + bytesSent, bytesToSend);
|
int rc = write(file_des, (char*)((char*)buf + bytesSent), bytesToSend);
|
||||||
// error
|
// error
|
||||||
if (rc < 0) {
|
if (rc < 0) {
|
||||||
cprintf(BG_RED, "Error writing to socket. Possible socket crash\n");
|
cprintf(BG_RED, "Error writing to socket. Possible socket crash\n");
|
||||||
|
Binary file not shown.
Reference in New Issue
Block a user