P
prabhu.pravin
I want to Transmit Data using Using Socket Programming in C. The only
Problem is that the data contains a lot of NULL characters in between
(it is an JPEG image data).so if I populate a Char array with the data
and try transmitting using send() only a part of the data is sent,
since null character is taken as a end-of-line in C.
Is there any way that send() can ignore the null character and transmit
the entire data in the buffer.
Problem is that the data contains a lot of NULL characters in between
(it is an JPEG image data).so if I populate a Char array with the data
and try transmitting using send() only a part of the data is sent,
since null character is taken as a end-of-line in C.
Is there any way that send() can ignore the null character and transmit
the entire data in the buffer.