View Single Post
  #1 (permalink)  
Old May 17th, 2001
Crazy Jim Crazy Jim is offline
Novicius
 
Join Date: May 17th, 2001
Location: Raleigh, NC US
Posts: 4
Crazy Jim is flying high
Question 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?

Reply With Quote