You can subscribe to this list here.
| 2002 | Jan | Feb | Mar | Apr (24) | May (14) | Jun (29) | Jul (33) | Aug (3) | Sep (8) | Oct (18) | Nov (1) | Dec (10) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 | Jan (3) | Feb (33) | Mar (7) | Apr (28) | May (30) | Jun (5) | Jul (10) | Aug (7) | Sep (32) | Oct (41) | Nov (20) | Dec (10) |
| 2004 | Jan (24) | Feb (18) | Mar (57) | Apr (40) | May (55) | Jun (48) | Jul (77) | Aug (15) | Sep (56) | Oct (80) | Nov (74) | Dec (52) |
| 2005 | Jan (38) | Feb (42) | Mar (39) | Apr (56) | May (79) | Jun (73) | Jul (16) | Aug (23) | Sep (68) | Oct (77) | Nov (52) | Dec (27) |
| 2006 | Jan (27) | Feb (18) | Mar (51) | Apr (62) | May (28) | Jun (50) | Jul (36) | Aug (33) | Sep (47) | Oct (50) | Nov (77) | Dec (13) |
| 2007 | Jan (15) | Feb (8) | Mar (14) | Apr (18) | May (25) | Jun (16) | Jul (16) | Aug (19) | Sep (32) | Oct (17) | Nov (5) | Dec (5) |
| 2008 | Jan (64) | Feb (25) | Mar (25) | Apr (6) | May (28) | Jun (20) | Jul (10) | Aug (27) | Sep (28) | Oct (59) | Nov (37) | Dec (43) |
| 2009 | Jan (40) | Feb (25) | Mar (12) | Apr (57) | May (46) | Jun (29) | Jul (39) | Aug (10) | Sep (20) | Oct (42) | Nov (50) | Dec (57) |
| 2010 | Jan (82) | Feb (165) | Mar (256) | Apr (260) | May (36) | Jun (87) | Jul (53) | Aug (89) | Sep (107) | Oct (51) | Nov (88) | Dec (117) |
| 2011 | Jan (69) | Feb (60) | Mar (113) | Apr (71) | May (67) | Jun (90) | Jul (88) | Aug (90) | Sep (48) | Oct (64) | Nov (69) | Dec (118) |
| 2012 | Jan (49) | Feb (528) | Mar (351) | Apr (190) | May (238) | Jun (193) | Jul (104) | Aug (100) | Sep (57) | Oct (41) | Nov (47) | Dec (51) |
| 2013 | Jan (94) | Feb (57) | Mar (96) | Apr (105) | May (77) | Jun (102) | Jul (27) | Aug (81) | Sep (32) | Oct (53) | Nov (127) | Dec (65) |
| 2014 | Jan (113) | Feb (59) | Mar (104) | Apr (259) | May (70) | Jun (70) | Jul (146) | Aug (45) | Sep (58) | Oct (149) | Nov (77) | Dec (83) |
| 2015 | Jan (53) | Feb (66) | Mar (86) | Apr (50) | May (135) | Jun (76) | Jul (151) | Aug (83) | Sep (97) | Oct (262) | Nov (245) | Dec (231) |
| 2016 | Jan (131) | Feb (233) | Mar (97) | Apr (138) | May (221) | Jun (254) | Jul (92) | Aug (248) | Sep (168) | Oct (275) | Nov (477) | Dec (445) |
| 2017 | Jan (218) | Feb (217) | Mar (146) | Apr (172) | May (216) | Jun (252) | Jul (164) | Aug (192) | Sep (190) | Oct (143) | Nov (255) | Dec (182) |
| 2018 | Jan (295) | Feb (164) | Mar (113) | Apr (147) | May (64) | Jun (262) | Jul (184) | Aug (90) | Sep (69) | Oct (364) | Nov (102) | Dec (101) |
| 2019 | Jan (119) | Feb (64) | Mar (64) | Apr (102) | May (57) | Jun (154) | Jul (84) | Aug (81) | Sep (76) | Oct (102) | Nov (233) | Dec (89) |
| 2020 | Jan (38) | Feb (170) | Mar (155) | Apr (172) | May (120) | Jun (223) | Jul (461) | Aug (227) | Sep (268) | Oct (113) | Nov (56) | Dec (124) |
| 2021 | Jan (121) | Feb (48) | Mar (334) | Apr (345) | May (207) | Jun (136) | Jul (71) | Aug (112) | Sep (122) | Oct (173) | Nov (184) | Dec (223) |
| 2022 | Jan (197) | Feb (206) | Mar (156) | Apr (212) | May (192) | Jun (170) | Jul (143) | Aug (380) | Sep (182) | Oct (148) | Nov (128) | Dec (269) |
| 2023 | Jan (248) | Feb (196) | Mar (264) | Apr (36) | May (123) | Jun (66) | Jul (120) | Aug (48) | Sep (157) | Oct (198) | Nov (300) | Dec (273) |
| 2024 | Jan (271) | Feb (147) | Mar (207) | Apr (78) | May (107) | Jun (168) | Jul (151) | Aug (51) | Sep (438) | Oct (221) | Nov (302) | Dec (357) |
| 2025 | Jan (451) | Feb (219) | Mar (326) | Apr (232) | May (306) | Jun (181) | Jul (452) | Aug (282) | Sep (620) | Oct (793) | Nov (682) | Dec |
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
| | | 1 | 2 | 3 | 4 | 5 |
| 6 | 7 | 8 | 9 | 10 | 11 | 12 |
| 13 (1) | 14 | 15 | 16 (1) | 17 | 18 | 19 |
| 20 | 21 | 22 | 23 | 24 | 25 (1) | 26 |
| 27 | 28 | 29 (1) | 30 (2) | | | |
| From: Marko R. <ma...@pa...> - 2008-04-30 23:53:28 |
James Yonan <ji...@yo...>: > Interesting. I wonder if a better solution might be to bracket the > struct openvpn_pktinfo definition with > > #pragma pack(1) > ... > #pragma pack() Yes, although gcc is allergic to #pragma's. The gcc way of expressing it is: struct __attribute__ ((__packed__)) my_packed_struct { char c; int i; struct my_unpacked_struct s; }; (from "info gcc" -> "C Extensions" -> "Type Attributes"). Marko |
| From: James Y. <ji...@yo...> - 2008-04-30 22:15:13 |
Interesting. I wonder if a better solution might be to bracket the struct openvpn_pktinfo definition with #pragma pack(1) ... #pragma pack() James Tim Davies wrote: > After attempting to use OpenVPN 2.1_rc7 on a 64 bit Centos 5 platform, > I came across a peculiar error when enabling multihome. Basically no > UDP packets were allowed to send due to an incorrect size being set. > > The problem seems to be in socket.c, where sizeof(opi) is incorrect. > The structure is defined as: > > struct openvpn_pktinfo > { > struct cmsghdr cmsghdr; > struct in_pktinfo in_pktinfo; > }; > > On a 64 bit platform, sizeof(struct cmsghdr) is 16, and sizeof(struct > in_pktinfo) is 12. Due to structure padding, sizeof(struct > openvpn_pktinfo) is 32, not 28. > > The attached patch fixed the problem, although I'm not sure it's the > best way to go about it. > > > Tim. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > ------------------------------------------------------------------------ > > _______________________________________________ > Openvpn-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openvpn-devel |
| From: Carsten K. <C.K...@gm...> - 2008-04-29 19:12:51 |
Hello, i've tried to install openvpn 2.1 RC7 without PKCS#11 DLLs (option in windows installer). But than openvpn.exe didn't work (missing pkcs11.dll) greetings Carsten |
| From: Tim D. <ti...@op...> - 2008-04-25 14:07:50 |
After attempting to use OpenVPN 2.1_rc7 on a 64 bit Centos 5 platform, I came across a peculiar error when enabling multihome. Basically no UDP packets were allowed to send due to an incorrect size being set. The problem seems to be in socket.c, where sizeof(opi) is incorrect. The structure is defined as: struct openvpn_pktinfo { struct cmsghdr cmsghdr; struct in_pktinfo in_pktinfo; }; On a 64 bit platform, sizeof(struct cmsghdr) is 16, and sizeof(struct in_pktinfo) is 12. Due to structure padding, sizeof(struct openvpn_pktinfo) is 32, not 28. The attached patch fixed the problem, although I'm not sure it's the best way to go about it. Tim. |
| From: Louis L. <llu...@ya...> - 2008-04-16 18:16:08 |
Hi OpenVPN developers, I am new to OpenVPN and have some questions regarding the compression algorithm and overall performance. Why was LZO here instead of other algorithms like deflate? Any particular performance consideration? I am lazy so didn't do any research regarding the difference and performance comparison between LZO and Deflate. Just hope to get a quick answer. If the question doesn't make sense, please forgive :-) Another question is how much throughput OpenVPN can support, say, on a Gbits networks? I tested it in a 100Mbps LAN environment. Without LZO compression, I got around 50Mbps. With LZO enabled, the number is about 70Mbps, which is close to the rate I got without VPN. I am wondering, when LZO is not enabled, which part limits the throughput. The encryption/decryption? Or the TUN virtual device? I guess it's the encryption procedure so I hope to know the rate OpenVPN can get in a Gbits network. If anybody has some confirmed figure in mind, please kindly inform me. Thanks so much! Best regards, L. ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ |
| From: Francis G. <fg...@ne...> - 2008-04-13 16:55:59 |
Hello, I submitted a patch through sf.net's interface adding DragonFlyBSD support: http://sdf-eu.org/links/1208105125 Please let me know, in case something's wrong with it and I should fix it. Thanks in advance, BR, -- Francis GUDIN <fg...@ne...> Fingerprint 305E 15CF A53E 14E0 6ACE 8CED C5D5 5A78 15E3 6AB2 GCU-Squad.org: http://web.gcu.info/redirs/sale.html |