Subject | Hash | Author | Date (UTC) |
---|---|---|---|
If slot is in FREE state and we get events, do not abort, but log an error. | 52301f684bb4a49fd74556f8b15fee643c4bfb06 | Catalin(ux) M. BOIE | 2010-06-07 20:25:21 |
More verbose logging and added some TODOs. | a27014689701b1dd3d0e3c02629d3c7dd0edc77e | Catalin(ux) M. BOIE | 2010-06-07 20:24:43 |
Added Conn_[io]qlen and obsoleted Conn_qlen (ambiguous). | be3822589afe052fade15fd81afee3549217131a | Catalin(ux) M. BOIE | 2010-06-07 20:23:39 |
Use u32 field of epoll. ptr on 64bit gave an warning. | 37c86810ceaadd0c8139f11e3737577efea4cabd | Catalin(ux) M. BOIE | 2010-06-07 19:46:15 |
Export CONN_VERSION in Conn_config.h | d34d7a1da235b00c3aa1c8e0494310c4dd100886 | Catalin(ux) M. BOIE | 2010-06-07 19:45:53 |
In Conn_poll_cb, show human readable events. | a3e305582e9bf1185254f8feeab90c51af626443 | Catalin(ux) M. BOIE | 2010-06-07 17:22:49 |
Cosmetic logs. | 937e40b54fabf19d7ed2102c104585bea0181634 | Catalin(ux) M. BOIE | 2010-06-07 17:22:25 |
Export Conn_poll_status. | 8d6e2e96bd8e7a34a239533edb7484d78de69995 | Catalin(ux) M. BOIE | 2010-06-07 17:21:57 |
Bump up the version to 1.0.31. | 4a307965c1f3b1449e98c7487a8e98538d237a23 | Catalin(ux) M. BOIE | 2010-05-30 19:22:27 |
On accept() set IN+OUT flags to speed up the sending (skip an epoll_wait). | 843d55ea6c8360f4f435288cd68183029e4c06e4 | Catalin(ux) M. BOIE | 2010-05-06 17:10:14 |
Use accept4 to skip an extra fcntl call! | 3eda4a8ac828035e4205dbe13e60fa39b6d8b2c6 | Catalin(ux) M. BOIE | 2010-05-06 17:09:54 |
If the socket is in closing phase, do not change events. | 57e97028a524ab257bc8216c5a2da7381cc0d050 | Catalin(ux) M. BOIE | 2010-05-06 17:02:27 |
Avoid doing epoll_ctl using a cache. | 9bc66cd209921998195b25c2f296fd0516a1ddbb | Catalin(ux) M. BOIE | 2010-05-06 16:53:13 |
Do not call gerpeername and getsockname at every accept/connect. Do it only when needed. | d2505dbca77358b6ed67394e09904b525ea517e6 | Catalin(ux) M. BOIE | 2010-05-06 16:38:40 |
Simplified setting NONBLOCK in Conn_setnonblock. | 18d93d4daf5182e2c2749be05f7bbd43bb18bb18 | Catalin(ux) M. BOIE | 2010-05-06 16:13:34 |
strstr should not use case sensitive when searching for \n. | 50658544213ff74d0e03625c5e3fae0eadba73ad | Catalin(ux) M. BOIE | 2010-05-06 16:11:06 |
Grow receiving buffer with Conn_default_ibuf instead of 0! Stupid! | f663a98fc5db5f64a4ed7bf9a37ae5a1a708ac3c | Catalin(ux) M. BOIE | 2010-05-06 16:10:13 |
Use fd -1 to signal that the socket is closed. | 66c44cbeb5672fae1bea46260adbae06a3562d88 | Catalin(ux) M. BOIE | 2010-05-06 16:08:59 |
Better error logging in xbind example. | dac03d74521e751de9d900ea115ad2fbd2deba6e | Catalin(ux) M. BOIE | 2010-02-16 20:22:05 |
Fixed some stupid choices regarding storage type for the output of snprintf. | 3cddc7934c4fc2640e4a60d408e98c45acef48c9 | Catalin(ux) M. BOIE | 2010-02-05 00:12:13 |
File | Lines added | Lines deleted |
---|---|---|
Conn.c | 7 | 3 |
File Conn.c changed (mode: 100644) (index 513507e..7eefaf0) | |||
... | ... | static void Conn_poll_cb(const unsigned int slot, int revents) | |
1220 | 1220 | Log(12, "\t%s\n", Conn_status_slot(slot)); | Log(12, "\t%s\n", Conn_status_slot(slot)); |
1221 | 1221 | ||
1222 | 1222 | /* We should not have events on a free cell */ | /* We should not have events on a free cell */ |
1223 | if (Conns[slot].state == CONN_STATE_FREE) | ||
1224 | abort(); | ||
1223 | if (Conns[slot].state == CONN_STATE_FREE) { | ||
1224 | Log(12, "\tBUG! Events on a FREE slot!\n"); | ||
1225 | return; | ||
1226 | } | ||
1225 | 1227 | ||
1226 | 1228 | if (revents & CONN_POLLHUP) { | if (revents & CONN_POLLHUP) { |
1227 | 1229 | Conns[slot].error_state = CONN_ERROR_HANGUP; | Conns[slot].error_state = CONN_ERROR_HANGUP; |
... | ... | int Conn_poll(const int timeout) | |
1389 | 1391 | ||
1390 | 1392 | if (Conns[slot].state == CONN_STATE_FREE) { | if (Conns[slot].state == CONN_STATE_FREE) { |
1391 | 1393 | /* Must not happen! */ | /* Must not happen! */ |
1392 | abort(); | ||
1394 | Log(9, "\tBUG! Slot is in FREE state and has events!\n"); | ||
1395 | slot++; | ||
1396 | continue; | ||
1393 | 1397 | } | } |
1394 | 1398 | ||
1395 | 1399 | /* test if it expired/timeout */ | /* test if it expired/timeout */ |