Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Cosmetic changes. | f09c89986ade60ff5f9a79f6080783acff11c3d5 | Catalin(ux) M. BOIE | 2009-08-31 20:53:33 |
Set start values for enums. | f2d6b05dce0e058323101a4d6f159c0c4172941a | Catalin(ux) M. BOIE | 2009-08-31 20:52:41 |
Call close callback, even if state is ERROR. | 58e96228277c188b7b072496e337be9c94f56eb1 | Catalin(ux) M. BOIE | 2009-08-31 20:52:17 |
Added Conn_work_to_do to signal when we can exit. | 492d960bf3e5b3718fe69ffc8ef30fbe344a805f | Catalin(ux) M. BOIE | 2009-08-31 20:50:56 |
Splited reporting of error types. | 2d28a3be0ebb1f5e3f548d2523ac591af7dee3b9 | Catalin(ux) M. BOIE | 2009-08-31 20:08:54 |
Conn_commit will return error, so, do not call error callback. | c97f8be6cfd55c32d78e62a30375d7c014dc0e0a | Catalin(ux) M. BOIE | 2009-08-31 20:08:17 |
Cosmetic changes. | 54a9e723c3a958e69f491b55df83f96b6814af44 | Catalin(ux) M. BOIE | 2009-08-31 20:07:51 |
Raised default listen para to 4096 from 128. somaxconn still has prio. | af39935492f39786879ea6ced9f7dfe929c4879d | Catalin(ux) M. BOIE | 2009-08-31 19:56:36 |
Store in time_open the accept timestamp so Conn_lifetime will work on srv side. | 0522d638872644d7bd6490027a7ae99b1fb4b16f | Catalin(ux) M. BOIE | 2009-08-31 19:55:44 |
Improved blackhole examples. | 128f393aba2b07c4aa0e41d962a8239dffc3cc10 | Catalin(ux) M. BOIE | 2009-08-31 17:41:30 |
More entries to .gitignore. | e1d71bcf46a9b61a4aa4e17b857ff9035d7fb6c7 | Catalin(ux) M. BOIE | 2009-08-31 17:39:45 |
Tweaked a little the debug level for some messages. | 1a27a1acf2ede62fb02b074f232badeb847bfcb8 | Catalin(ux) M. BOIE | 2009-08-31 17:39:21 |
Added Conn_lifetime (returns the time in ms between connected state and now). | 4e3f1aaabc21d4cbdac26e42612ebd0298c8d86e | Catalin(ux) M. BOIE | 2009-08-31 17:22:37 |
Added Conn_sys that logs some system variables related to network perf. | af960f317b8ca9a8f78fe44e80ddbdb6a9483e6f | Catalin(ux) M. BOIE | 2009-08-31 16:36:00 |
Better output flags. | d57a98c2b158aeb30530c2e5188977a40336a360 | Catalin(ux) M. BOIE | 2009-08-25 20:37:55 |
Improved examples. | 75439293c1d067327e606d72ec6290b43110bf24 | Catalin(ux) M. BOIE | 2009-08-25 20:37:29 |
Removed line1.c because duplicates code. | 1119059afacde8d0b7b7dab77850dd6b71684190 | Catalin(ux) M. BOIE | 2009-08-25 20:11:52 |
Removed *.run becasue we have a generic run script. | 007083cd9d1abefe4dd73e65c9026a2607fbcd4e | Catalin(ux) M. BOIE | 2009-08-25 20:09:00 |
Removed bind_s example because blackhole_s will take place. | b9b06d98f00413b5a5df9d7bc9b3bd05b5536f28 | Catalin(ux) M. BOIE | 2009-08-25 20:07:38 |
Added Conn_set_address helper. | 1b6e7e8a294ac88aa966e4e43bb77a4fdff0ca5a | Catalin(ux) M. BOIE | 2009-08-25 19:21:00 |
File | Lines added | Lines deleted |
---|---|---|
Conn.c | 3 | 3 |
File Conn.c changed (mode: 100644) (index 6d0c652..d9dafb6) | |||
... | ... | int Conn_commit(struct Conn *C) | |
606 | 606 | bind_sa6.sin6_family = AF_INET6; | bind_sa6.sin6_family = AF_INET6; |
607 | 607 | ret = inet_pton(AF_INET6, C->bind_addr, &bind_sa6.sin6_addr); | ret = inet_pton(AF_INET6, C->bind_addr, &bind_sa6.sin6_addr); |
608 | 608 | if (ret < 0) { | if (ret < 0) { |
609 | /*TODO:set state and error state. Also everywhere in this function*/ | ||
610 | 609 | snprintf(Conn_error, sizeof(Conn_error), | snprintf(Conn_error, sizeof(Conn_error), |
611 | 610 | "inet_pton(%s) failed", C->bind_addr); | "inet_pton(%s) failed", C->bind_addr); |
612 | 611 | return -1; | return -1; |
... | ... | int Conn_commit(struct Conn *C) | |
639 | 638 | C->fd = socket(C->sock_domain, C->sock_type, C->sock_protocol); | C->fd = socket(C->sock_domain, C->sock_type, C->sock_protocol); |
640 | 639 | if (C->fd == -1) { | if (C->fd == -1) { |
641 | 640 | snprintf(Conn_error, sizeof(Conn_error), | snprintf(Conn_error, sizeof(Conn_error), |
642 | "Cannot create socket (%d, %d, %d) [%s]", | ||
643 | C->sock_domain, C->sock_type, C->sock_protocol, | ||
641 | "Cannot create socket (%s, %s, %s) [%s]", | ||
642 | Conn_domain(C), Conn_type(C), | ||
643 | Conn_get_socket_protocol(C), | ||
644 | 644 | strerror(errno)); | strerror(errno)); |
645 | 645 | return -1; | return -1; |
646 | 646 | } | } |