gpt4 book ai didi

linux - Indy 10 TCPServer 不与 Linux 上连接的客户端通信

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:28:21 25 4
gpt4 key购买 nike

我有一个问题让我感到困惑。我正在尝试将 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。

丹尼尔

最佳答案

Id_IPv4 在 IdGlobal.pas 中定义,确保该单元在您的 uses 子句中。请注意,您仅在定义了 UNIX 时才调用 Bindings.Add(),但您正试图访问 IFDEF block 之外的 Binding。您根本不需要 IFDEF block 。 Indy 默认为 IPv4。

关于通信问题,我认为您显示的代码没有任何问题,前提是 FreePascal 正确调用 TIdIOHandler.WriteLn() 而不是某些控制台 WriteLn() I/O 例程。你能显示客户端代码吗?

服务器端,我现在唯一能想到的可能出错的是 Indy 的 TIdTextEncoding 类在发送/接收字符串时可能失败,如果您设置了 TIdIOHandler.DefStringEncoding 属性或全局 GIdDefaultEncoding 变量为非默认编码。在非 Windows 系统上,TIdTextEncoding 使用 iconv 库,而 Indy 的 iconv 支持目前已知有点问题。另一方面,Indy 的默认编码是 ASCII,它根本不依赖 iconv,所以使用它应该不会有任何失败。

关于linux - Indy 10 TCPServer 不与 Linux 上连接的客户端通信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7767616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com