* OpenVPN is essentially a special-case of a user-space network stack. In future development, it would be interesting to modularize OpenVPN so that the central core is implemented as a user-space network stack, and the other components such as VPN and routing would be modules in this stack. * The above changes make it more straightforward to implement other protocols in the stack, such as IPv6. * The network stack changes would make it much more straightforward to implement alternative topologies for OpenVPN, such as full-mesh. * The SSL and compression functionality should be modularized so that OpenVPN can be used with different SSL libraries or different compression algorithms. * The current i/o event system needs to be revamped into a true asynchronous model. While the current event model is partially asynchronous, it is not sufficiently clean to allow certain features to be implemented such as concurrent multithreading or the ability to listen on multiple interfaces simultaneously. * The current non-asynchrous-clean status of the event system makes maintenance of certain OpenVPN components quite tenuous, such as mtcp.c. * It might be worthwhile to look into using libevent as the underlying i/o event system for OpenVPN (libevent is used by memcached). * Currently, OpenVPN is scaled on SMP machines by adding processes rather than threads. While it might be interesting to look into scaling OpenVPN across threads, there may be kernel-level bottlenecks that impede this, e.g. note the problems facebook had when trying to scale memcached, specifically the problems of having multiple threads contend for a single UDP socket. * http://www.facebook.com/note.php?note_id=39391378919&ref=mf * The fact that OpenVPN is currently implemented as a monolithic C application makes it difficult to control OpenVPN's internal operation from higher level languages. I would like to see the core functionality of OpenVPN implemented as a C library that would be wrappable by higher-level language objects. For example, suppose you wanted to build a full-mesh OpenVPN cloud, where OpenVPN runs on hundreds of machines, and where each machine has multiple processors. It would be much more straightforward to implement the cloud in a high-level language such as python, and wrap the OpenVPN library as a python extension.