Re: maximum dtls connections

2012-01-01 Thread Michael Tuexen
On Jan 1, 2012, at 12:39 AM, Florian Weimer wrote: * Michael Tuexen: I don't know. But you need a socket per peer and might use select() for multiplexing which might also introduce some limits. Do you really need one socket per peer? Why? The implementation of DTLS is derived from the

Re: maximum dtls connections

2011-12-27 Thread Manish Yadav
Hi Michael, thanks for info, could you please do let me know in case of dtls how much memory is allocated per connection? or any clue how do i calculate this? i want to define maximum number of concurrent connections could be supported for any dtls server. thanks, manish On Tue, Dec 27, 2011 at

Re: maximum dtls connections

2011-12-27 Thread Michael Tuexen
On Dec 27, 2011, at 5:00 PM, Manish Yadav wrote: Hi Michael, thanks for info, could you please do let me know in case of dtls how much memory is allocated per connection? or any clue how do i Hi Manish, I don't know. But you need a socket per peer and might use select() for multiplexing

maximum dtls connections

2011-12-26 Thread Manish Yadav
Hi all, i am building dtls server using *OpenSSL* v0.*9.8r*. i see following crash in openssl code: (gdb) bt #0 0x485b0297 in kill () from /lib/libc.so.7 #1 0x485b01f6 in raise () from /lib/libc.so.7 #2 0x485aedca in abort 28) from /lib/libc.so.7 #3 0x4852f9d5 in malloc () from

Re: maximum dtls connections

2011-12-26 Thread Michael Tuexen
On Dec 26, 2011, at 7:09 PM, Manish Yadav wrote: Hi all, i am building dtls server using OpenSSL v0.9.8r. i see following crash in openssl code: Whenever you are using DTLS: Upgrade to the latest version OpenSSL 1.0.0. Please report if your problem persists with the latest version of