This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 2 matches

by NetRider
Sat May 28, 2005 5:46 pm
Forum: Modules & Programming
Topic: Changed end of line char from \n to \0
Replies: 12
Views: 19892

Thanks for the help guys.

I found it would be easier to write a simle proxy in perl, which would just remove the \0 from the string sent by the server, rather than experimenting with the eggdrop code.
by NetRider
Tue May 17, 2005 7:38 pm
Forum: Modules & Programming
Topic: Changed end of line char from \n to \0
Replies: 12
Views: 19892

Changed end of line char from \n to \0

Hey, I installed my own version of undernet ircu server. In order to allow a flash chat client to connect, I had to change the end of line character from \n to \0 It now looks like: mb->msg[mb->length++] = '\r'; /* add \r\n to buffer */ mb->msg[mb->length++] = '\0'; mb->msg[mb->length++] = '\n'; mb-...