I need Gnutella coding help I'm making my own GNUTELLA client because it doesn't have the functionality I want...
Using C++, I first send a string:
"GNUTELLA CONNECT/0.4/n/n"
Then I recieve the string:
"GNUTELLA OK/n/n"
But I can't get any more information from the server.
I tried sending a single byte string that had the data of 0 in it, but that didn't work.
Any help is appreciative
After recieving I did:
char c1[400];
c1[0]=0;
send(Socket,c1,1,0);
But I recieved nothing else... Any hel? |