((section 2 "Outdated egg!" (p "This is an egg for CHICKEN 4, the unsupported old release.  You're almost certainly looking for " (int-link "/eggref/5/awful-ssl" "the CHICKEN 5 version of this egg") ", if it exists.") (p "If it does not exist, there may be equivalent functionality provided by another egg; have a look at the " (link "https://wiki.call-cc.org/chicken-projects/egg-index-5.html" "egg index") ". Otherwise, please consider porting this egg to the current version of CHICKEN.")) (section 2 "awful-ssl" (toc) (section 3 "Description" (p "SSL support for " (int-link "/egg/awful" "awful") ".") (p "This extension provides a single procedure (" (tt "enable-ssl") ") which enables SSL support for awful.")) (section 3 "Author" (p (int-link "/users/mario-domenech-goulart" "Mario Domenech Goulart"))) (section 3 "Repository" (p (link "https://github.com/mario-goulart/awful-ssl" "https://github.com/mario-goulart/awful-ssl"))) (section 3 "Requirements" (ul (li (int-link "/egg/awful" "awful") " (>= 0.28)") (li (int-link "/egg/openssl" "openssl")))) (section 3 "Procedure" (section 4 (tt "enable-ssl") (def (sig (procedure "(enable-ssl #!key certificate-file private-key-file)" (id enable-ssl))) (p "Enable SSL support for " (int-link "/egg/awful" "awful") ".  The following keyword parameters can be used:") (dl (dt (tt "certificate-file") " (string)") (dd "Path to the certificate file (PEM format).") (dt (tt "private-key-file") " (string)") (dd "Path to the private key file (PEM format).")) (p (b "Important") ": enable-ssl must be evaluated in the context of privileged code to be effective.  See the " (tt "--privileged-code") " command line option for awful or the " (tt "privileged-code") " parameter for the " (tt "awful-start") " procedure.")))) (section 3 "Usage example" (highlight scheme "(use awful-ssl spiffy)\n\n(server-port 443)\n\n(enable-ssl\n certificate-file: \"server.crt\"\n private-key-file: \"server.key\")")) (section 3 "License" (pre "Copyright (c) 2008-2018, Mario Domenech Goulart\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\nRedistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\nNeither the name of the author nor the names of its contributors may\nbe used to endorse or promote products derived from this software\nwithout specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS\nFOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\nSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE.")) (section 3 "Version history" (section 5 "version 0.3" (ul (li "CHICKEN 5 support") (li "Compile with " (tt "-O3") " for CHICKEN 4"))) (section 5 "version 0.2" (ul (li "Require " (int-link "/egg/spiffy" "Spiffy") " 4.14, which fixes some compatibility issues with " (int-link "/egg/openssl" "openssl")))) (section 5 "version 0.1" (ul (li "initial release"))))))