IdResourceStringsOpenSSL.pas 1.3 KB

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