Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Simple readline algorithm for Networking

Name: Anonymous 2008-08-19 16:52

Are there any simple standardized way of reading a full line from a socket that mallocs the memory for you? If so, what are they? If not, is there a way to do it in approximately O(1) time (obviously not including the time for the memory allocation).

Name: Anonymous 2008-08-20 7:35

FILE* f;
char buffa[LINE_MAX];

f = fdopen(socket, "r+");
fgets(buffa, sizeof(buffa), f);

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List