我有一个问题让我陷入困境。我正在尝试将 Windows 上的 Indy 10 客户端/服务器应用程序的服务器端移植到 Linux 以节省成本。该应用程序最初是使用 Delphi 2010 开发的。我已将其移植到 Lazarus/FreePascal 并在 Windows 上运行良好。鉴于 Lazarus/FreePascal 是多平台且免费的,它是该工作的理想人选。
我已经尽我所能让服务器应用程序在 Linux 上运行但没有成功。服务器只是不与连接的客户端通信。什么都没有!
然后我决定回到第一方。我试图获得一个在 Linux 上工作的非常基本的示例。源码相关部分如下图
procedure TForm1.IdTCPServer1Execute(AContext: TIdContext);
var
s: string;
i: Integer;
begin
with AContext.Connection.IOHandler do
try
WriteLn('Type an integer and Enter');
s := ReadLn;
try
i := StrToInt(s);
WriteLn(s + ' squared is ' + IntToStr(i*i));
except
WriteLn(s + ' is not an integer');
end;
finally
Free;
end;
end;
procedure TForm1.FormActivate(Sender: TObject);
var
Binding: TIdSocketHandle;
begin
{$IFDEF UNIX}
Binding := IdTCPServer1.Bindings.Add;
//Binding.IPVersion := Id_IPv4; <----- Gives compilation error Error: Identifier not found "Id_IPv4"
{$ENDIF}
Binding.IP := '127.0.0.1';
Binding.Port := 6501;
IdTCPServer1.Active := True;
end;
end.
这是程序的项目文件 squares.lpr
program squares;
{$mode objfpc}{$H+}
// The following line is is necessary for Linux thread support
{$IFDEF UNIX}{$DEFINE UseCThreads}{$ENDIF}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, uSquares
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
当我尝试使用 telnet 从终端连接到服务器时,我得到以下响应
telnet 127.0.0.1 6501
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
7
Connection closed by foreign host.
如您所见,telnet 连接到服务器。但是客户端连接后服务器的第一个响应“Type an integer and Enter”没有出现。此外,当我向服务器发送一个数字(例如“7”)进行平方时,telnet 显示“连接被外国主机关闭”。所以 telnet 客户端也根本不会收到服务器的响应。我使用的是 Indy svn 版本,所以这不是旧 Indy 版本的问题。
所以即使是这个基本的例子也不能在 Linux 中运行!我不知道如何解决这个问题,所以我真的需要你的帮助。此外,如果您有任何我可以阅读的关于使用 Pascal 在 Linux 上进行套接字编程的资料,我将不胜感激。
我在 Linux Mint 上使用 Lazarus 0.9.31/FPC 2.4.4 和 Indy 10.5.8。
丹尼尔