sslserver.dpr

来自「著名的SecureBlackBox控件完整源码」· DPR 代码 · 共 33 行

DPR
33
字号
{

    Delphi 7

    Borland is deprecating the use of the TServerSocket
    and TClientSocket from the unit ScktComp. It is
    recommended that you use the Indy components for
    socket operations. The TServerSocket and
    TClientSocket will no longer be installed on the
    component palette by default. If you require the
    use of these components then you can install
    the design time package named dclsockets70.bpl,
    found in your bin directory. For deployment with
    runtime packages, you will need to deploy rtl70.bpl
    and any other required packages.

}

program SSLServer;

uses
  Forms,
  MainForm in 'MainForm.pas' {frmMain},
  SelectCertForm in 'SelectCertForm.pas' {frmSelectCert};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TfrmMain, frmMain);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?