bugfix: typo in SMTP module; SCGI module finished

This commit is contained in:
Araq
2010-10-25 23:49:48 +02:00
parent beb9e3d325
commit 1dd9ec85b2
7 changed files with 217 additions and 36 deletions

View File

@@ -13,7 +13,7 @@
import openssl, strutils, os
type
TSecureSocket* = object {.final.}
TSecureSocket* {.final.} = object
ssl: PSSL
bio: PBIO
@@ -50,7 +50,7 @@ proc connect*(sock: var TSecureSocket, address: string,
result = SSL_get_verify_result(sock.ssl)
proc recvLine*(sock: TSecureSocket, line: var String): bool =
proc recvLine*(sock: TSecureSocket, line: var string): bool =
## Acts in a similar fashion to the `recvLine` in the sockets module.
## Returns false when no data is available to be read.
## `Line` must be initialized and not nil!