Hi all,
I am having troubles. I made Java Server that listens on specified port. I wanna C client to connect to this server. Server can receice desired data from client, but when send back data, client cannot get it. Client is blocked somehow.
Doing this all separately is ok. For example.
Client is able to receive data, but just if I use recv funciton alone(in C). Client is also able to send everythig to the server correctly,bu just if I use send function alone in the Client.
this combination
send(...);
recv(...);
doesn't work at all
Any idea is helpful
GuzaPasha
I am having troubles. I made Java Server that listens on specified port. I wanna C client to connect to this server. Server can receice desired data from client, but when send back data, client cannot get it. Client is blocked somehow.
Doing this all separately is ok. For example.
Client is able to receive data, but just if I use recv funciton alone(in C). Client is also able to send everythig to the server correctly,bu just if I use send function alone in the Client.
this combination
send(...);
recv(...);
doesn't work at all
Any idea is helpful
GuzaPasha