My C is a bit rusty. I have some ideas I'd like to try and realize with libevent. Do you know any codebase I can use as a reference?
Asked
Active
Viewed 1,340 times
3 Answers
4
Two good projects that have fairly straight forward code are simplehttp and libevent-longpolling
Two spots i can point you to in order to answer this question in general are to search google code search for evhttp.h (or a similar libevent header file) or to search code.google.com for label:libevent

Jehiah
- 2,739
- 22
- 18
1
I've got a few:
- http://github.com/ngerakines/barbershop -- A shifting priority queue daemon in c using libevent. Fun stuff with binary search trees and linked lists.
- http://github.com/ngerakines/johnlocke -- A torrent tracker that I'm currently working on. Very much in progress and alpha quality, but works.
- http://github.com/ngerakines/mochevent -- A libevent http service front-end to an erlang grid.

Nick Gerakines
- 1,432
- 1
- 11
- 20