ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/socket/init.C
(Generate patch)

Comparing deliantra/server/socket/init.C (file contents):
Revision 1.54 by root, Wed Nov 14 08:09:46 2007 UTC vs.
Revision 1.58 by root, Tue Apr 22 07:28:05 2008 UTC

130 if (!getsockopt (fd, IPPROTO_TCP, TCP_MAXSEG, &val, &sl) && sl == sizeof (val)) 130 if (!getsockopt (fd, IPPROTO_TCP, TCP_MAXSEG, &val, &sl) && sl == sizeof (val))
131 mss = val; 131 mss = val;
132#endif 132#endif
133 } 133 }
134 134
135 {
136 int bufsize = 65535; /*Supposed absolute upper limit */
137 int oldbufsize;
138 int buflen = sizeof (int);
139
140 if (fcntl (fd, F_SETFL, O_NONBLOCK) == -1) 135 if (fcntl (fd, F_SETFL, O_NONBLOCK) == -1)
141 LOG (llevError, "InitConnection: Error on fcntl.\n"); 136 LOG (llevError, "InitConnection: Error on fcntl.\n");
142
143 if (getsockopt (fd, SOL_SOCKET, SO_SNDBUF, (char *) &oldbufsize, (socklen_t *) & buflen) == -1)
144 oldbufsize = 0;
145
146 if (oldbufsize < bufsize)
147 if (setsockopt (fd, SOL_SOCKET, SO_SNDBUF, (char *) &bufsize, sizeof (&bufsize)))
148 LOG (llevError, "InitConnection: setsockopt unable to set output buf size to %d\n", bufsize);
149
150 buflen = sizeof (oldbufsize);
151 getsockopt (fd, SOL_SOCKET, SO_SNDBUF, (char *) &oldbufsize, (socklen_t *) & buflen);
152 }
153 137
154 state = ST_SETUP; 138 state = ST_SETUP;
155 mapmode = Map0Cmd; 139 mapmode = Map0Cmd;
156 darkness = 1; 140 darkness = 1;
157 mapx = 11; 141 mapx = 11;
165 */ 149 */
166 faces_sent[0] = true; 150 faces_sent[0] = true;
167 fx_want [FT_FACE] = true; // all clients must support image faces 151 fx_want [FT_FACE] = true; // all clients must support image faces
168 152
169 socket_ev.set (fd, EV_READ); 153 socket_ev.set (fd, EV_READ);
154 socket_ev.prio (2); // one higher than the ticker priority
170 socket_ev.start (); 155 socket_ev.start ();
171 156
172 // initialisation done, kick it! 157 // initialisation done, kick it!
173 send_packet_printf ("version %d %d %s\n", VERSION_CS, VERSION_SC, VERSION_INFO); 158 send_packet_printf ("version %d %d %s\n", VERSION_CS, VERSION_SC, VERSION_INFO);
174 flush (); 159 flush ();
226 last_resist[i] = -1; 211 last_resist[i] = -1;
227 212
228 last_weapon_sp = -1; 213 last_weapon_sp = -1;
229 last_level = -1; 214 last_level = -1;
230 last_stats.exp = -1; 215 last_stats.exp = -1;
231 last_weight = (uint32) - 1;
232 last_flags = 0; 216 last_flags = 0;
233 last_weight = 0; 217 last_weight = -1;
234 last_weight_limit = 0; 218 last_weight_limit = 0;
235 last_path_attuned = 0; 219 last_path_attuned = 0;
236 last_path_repelled = 0; 220 last_path_repelled = 0;
237 last_path_denied = 0; 221 last_path_denied = 0;
238 last_speed = 0; 222 last_speed = 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines