I'm working on a fastcgi dev kit written in objective-c/cocoa, that mimics the behavior and structure of AppKit/UIKit (app deleagates, runloops, event queues etc). I've done my homework on fastcgi, libfcgi, the fastcgi objective c implementations using libfcgi and I've come to the sad realization that, in order to make it 100% "Cocoa" I'd have to implement the protocol myself, from scratch (the way libfcgi is designed to "loop" doesn't jive well with CoreFoundation RunLoops and event queues).I'm working on a fastcgi dev kit written in obj