summaryrefslogtreecommitdiffstats
path: root/src/crypto/ssl.c
Commit message (Collapse)AuthorAgeFilesLines
* #if 0 out for nowMichael Brown2007-01-261-0/+3
|
* We don't actually have a stdio.h header file. Our printf() functions areMichael Brown2006-09-271-1/+0Star
| | | | | | | | defined in vsprintf.h. (This may change, since vsprintf.h is a non-standard name, but for now it's the one to use.) There should be no need to include vsprintf.h just for DBG() statements, since include/compiler.h forces it in for a debug build anyway.
* added stdio.h to includes for DBG compilationMarty Connor2006-09-271-0/+1
|
* The first packet (ClientHello Handshake) can be constructed and is acceptedDerek Pryor2006-07-171-0/+133
by SSL servers. Framework.c allows me to test the library against a given https server.