nicoscene Posted October 23, 2015 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 154 Reputation: 6 Joined: 04/26/12 Last Seen: January 26, 2016 Share Posted October 23, 2015 (edited) Can someone help me decipher this? (this is eAthena emulator btw, not rAthena) Edited October 23, 2015 by nicoscene Quote Link to comment Share on other sites More sharing options...
Functor Posted October 23, 2015 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 352 Reputation: 267 Joined: 09/08/13 Last Seen: Friday at 07:14 AM Share Posted October 23, 2015 Open ../src/common/socket.c and before: fd_set readfds; add: #ifndef MSG_NOSIGNAL #define MSG_NOSIGNAL 0 #endif In the function send_from_fifo change: len = sSend(fd, (const char *) session[fd]->wdata, (int)session[fd]->wdata_size, 0); to: len = sSend(fd, (const char *) session[fd]->wdata, (int)session[fd]->wdata_size, MSG_NOSIGNAL); After that you have to save changes and recompile the server. Quote Link to comment Share on other sites More sharing options...
Question
nicoscene
Can someone help me decipher this? (this is eAthena emulator btw, not rAthena)

Edited by nicosceneLink to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.