-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathIdResourceStringsOpenSSL.pas
35 lines (31 loc) · 1.25 KB
/
IdResourceStringsOpenSSL.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
unit IdResourceStringsOpenSSL;
interface
resourcestring
{IdOpenSSL}
RSOSSFailedToLoad = 'Failed to load %s.';
RSOSSFailedToLoad_WithErrCode = 'Failed to load %s (error #%d).';
RSOSSMissingExport_WithErrCode = '%s (error #%d)';
RSOSSUnsupportedVersion = 'Unsupported SSL Library version: %.8x.';
RSOSSUnsupportedLibrary = 'Unsupported SSL Library: %s.';
RSOSSLModeNotSet = 'Mode has not been set.';
RSOSSLCouldNotLoadSSLLibrary = 'Could not load SSL library.';
RSOSSLStatusString = 'SSL status: "%s"';
RSOSSLConnectionDropped = 'SSL connection has dropped.';
RSOSSLCertificateLookup = 'SSL certificate request error.';
RSOSSLInternal = 'SSL library internal error.';
//callback where strings
RSOSSLAlert = '%s Alert';
RSOSSLReadAlert = '%s Read Alert';
RSOSSLWriteAlert = '%s Write Alert';
RSOSSLAcceptLoop = 'Accept Loop';
RSOSSLAcceptError = 'Accept Error';
RSOSSLAcceptFailed = 'Accept Failed';
RSOSSLAcceptExit = 'Accept Exit';
RSOSSLConnectLoop = 'Connect Loop';
RSOSSLConnectError = 'Connect Error';
RSOSSLConnectFailed = 'Connect Failed';
RSOSSLConnectExit = 'Connect Exit';
RSOSSLHandshakeStart = 'Handshake Start';
RSOSSLHandshakeDone = 'Handshake Done';
implementation
end.