mr maibelo by Anonymous Coder17th Sep 2013 12:40
|
---|
Summary the best app games ever Description this is the app games for all devices and can support all phones. Has high quality softwares and standard Code ` This code was downloaded from The Game Creators ` It is reproduced here with full permission ` http://www.thegamecreators.com /* blacklist-1.c: An example program that denies client access * to blacklisted sites. This plugin illustrates * how to use configuration information from the * blacklist.txt configuration file. * * Usage: * (Solaris) : blacklist-1.so * * */ #include #include #include # define MAX_ NSITES 500 static char* sites[MAX_ NSITES]; static int nsites; static TSMutex sites_ mutex; static TSTextLogObject log; static void handle_ dns (TSHttpTxn txnp, TSCont contp) { TSMBuffer bufp; TSMLoc hdr_ loc; TSMLoc url_ loc; const char *host; int i; int host_ length; if (!TSHttpTxnClientReqGet (txnp, &bufp, &hdr_ loc)) { |