/TODO (56c4068b0705cf336dd855975cc1984c4eb6b295) (2292 bytes) (mode 100644) (type blob)
== SHOWSTOPPERS ==
== HIGH PRIORITY ==
[ ] Cache getaddrinfo responses
[ ] Replace Conn_X with Conn_get_socket_X!
[ ] Use shutdown(2) before closing connection (http://www.developerweb.net/forum/archive/index.php/t-2940.html).
== LOW PRIORITY ==
[ ] Dump all memory statistics
[ ] SCTP
[ ] .error_state -> error_type
[ ] if (.error_state...) -> if (.state == CONN_STATE_ERROR)
[ ] Audit CONN_STATE_EMPTY vs CONN_STATE_FREE
[ ] Add a function to set the maximum number of connections.
[ ] Fix the whole list scanning for expiration, band and closing.
[ ] Put callbacks in a structure to free some space from struct Conn.
[ ] Add access control
Conn_ac_set_default(C, CONN_AC_DENY) - default deny (or CONN_AC_ALLOW)
Conn_ac_add(C, CONN_AC_ALLOW, "2001::1/64"); - for ipv6
Conn_ac_add(C, CONN_AC_ALLOW, "192.168.0.0/25"); - for ipv4
[ ] A la redir stuff
[ ] Bridge 2 connections together for proxy stuff.
[ ] Check PACKET: can we send with "send" without knowing the MAC?
[ ] UDP
[ ] Ce se intimpla daca se ajunge la ~ sfirsitul buffer-ului si nu pot inca sa
procesez datele?
[ ] Queue for delete/trytoconnect/etc.
Performance:
[ ] net.core.somaxconn
[ ] Take care for /proc/net/netstat
[ ] /proc/sys/net/ipv4/tcp_mem
Now (512M): 49152 65536 98304
Now (256M): 24576 32768 49152 - 55 conns/sec
Test with: 80000 120000 240000 - 92 conns/sec
Test with 160000 240000 480000 - 96 conns/sec
After:
echo "16000 64000 512000" > tcp_[rw]mem - 96
After echo 1 > /proc/sys/net/ipv4/tcp_low_latency - 156 conns/sec
Pentru a reduce numarul de conexiuni in TIME-WAIT:
echo 200 > /proc/sys/net/ipv4/tcp_max_tw_buckets
[ ] Add loadbalancing and failover in the base code.
[ ] Automaticaly put \0 at the end of receive data.
[ ] Add the possibility to wait for an char/string before calling recv callback
[ ] Change socket buffer accordingly with user settings to minimize
needed memory.
[ ] Dump how many memory is in use vor various parts of the internal data.
[ ] Do not mix slot and id and fd in examples.
[ ] Test suite
[ ] Free memory when the number of connections is going down.
[ ] Bandwidth part should have a separate pointer, to not load too much Conn structure.
=== When we switch to Conn version 2 library ===
[ ] Conn_socket will cann Conn_socket_proto
[ ] use enums!
Mode |
Type |
Size |
Ref |
File |
100644 |
blob |
71 |
96bedc068154b3ded49713a04edd956b6bf7cff6 |
.gitignore |
100644 |
blob |
169 |
c003c095218f64ad33aeb89987f61eb575557d96 |
.mailmap |
100644 |
blob |
1945 |
fecf0e7a7e8580485101a179685aedc7e00affbb |
Changelog.pre109 |
100644 |
blob |
33449 |
c869715f4e4f28e692a762ec7f337ae705581264 |
Conn.c |
100644 |
blob |
1526 |
e10421bf8e376a6b479156ca7be599e3a7bc7727 |
Conn.h |
100644 |
blob |
726 |
64b1bad93a84f87c3e93fc24ac5341db691ea578 |
Conn.spec.in |
100644 |
blob |
95 |
709b9e660dcb7e8c7f17cda4e15cf3e37ec73839 |
Conn_config.h.in |
100644 |
blob |
32116 |
1ef5a31760df3e75df94dfc24bf9b82be345f074 |
Conn_engine_core.c |
100644 |
blob |
9809 |
1b67b229f712fc9f929bd50db99edd16dee93d24 |
Conn_engine_core.h |
100644 |
blob |
3960 |
51e1c1125e9dd4cbfdefa2dab9c1817a346e7827 |
Conn_engine_epoll.c |
100644 |
blob |
610 |
b8597ef7043fa9b6ccd58c0f484f040e8621cc95 |
Conn_engine_epoll.h |
100644 |
blob |
2761 |
8a866dbb20b17aa5efd9466ccacd74e25baa6923 |
Conn_engine_poll.c |
100644 |
blob |
597 |
183f7af0b0688200fa8f69527c03ee075c83df12 |
Conn_engine_poll.h |
100644 |
blob |
30 |
d987fa5df957830331139935d517009e2911b0cf |
INSTALL |
100644 |
blob |
25275 |
92b8903ff3fea7f49ef5c041b67a087bca21c5ec |
LICENSE |
100644 |
blob |
1311 |
3c820df3b36b4bc844c52bc8c7e86f7843b67bb6 |
Makefile.in |
100644 |
blob |
192 |
5b11bdfb23857d8588845465aef993b320596b44 |
README |
100644 |
blob |
2292 |
56c4068b0705cf336dd855975cc1984c4eb6b295 |
TODO |
100755 |
blob |
23 |
d33bb6c4ecdce1390ce1db3c79ea3b93e22ea755 |
configure |
040000 |
tree |
- |
d4c9c4a69c5cfa2a84316967185f1661b6817779 |
docs |
100755 |
blob |
12497 |
bf888f65677e904ccdddc944f3becc612910e12c |
duilder |
100644 |
blob |
338 |
638c60df9e009fd5f5a05023040b1a1e20f3db37 |
duilder.conf |
040000 |
tree |
- |
7b6e9c21cc34a982588af6cbbac0447b70a01ed6 |
examples |
040000 |
tree |
- |
751693d0803f700dd060788cc9383aa24b472267 |
tests |
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"
Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/catalinux/Conn
Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/catalinux/Conn
Clone this repository using git:
git clone git://git.rocketgit.com/user/catalinux/Conn
You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a
merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main