怎样在局域网中实现组播(100分)

  • 主题发起人 babysheep
  • 开始时间
B

babysheep

Unregistered / Unconfirmed
GUEST, unregistred user!
在做网络寻呼系统的时候碰到点问题,不知道怎么实现网络组播。请各位大侠赐教。
 
仅只在局域网内实现其实挺简单的,用socket编程,目前在windows下只支持UDP
Client与一般的Client无异,只是目的地址为组播地址(D类地址,224.0.0.0以上),
Server需要setsockopt():
Receiving IP Multicast Datagrams
Before a host can receive IP multicast datagrams, it must become a member of
one or more IP multicast groups. A process can ask the host to join a multicast
group by using the following socket option

struct ip_mreq mreq;

where "mreq" is the following structure:
struct ip_mreq {
struct in_addr imr_multiaddr; /* multicast group to join */
struct in_addr imr_interface; /* interface to join on */
}
For example:
#define RECV_IP_ADDR "225.6.7.8" // arbitrary multicast address
mreq.imr_multiaddr.s_addr = inet_addr(RECV_IP_ADDR);
mreq.imr_interface.s_addr = INADDR_ANY;
err = setsockopt(sock, IPPROTO_IP, IP_ADD_MEMBERSHIP,
(char*)&mreq, sizeof(mreq))

Note that it is necessary to bind to an address before calling the setsockopt() function.
Every membership is associated with a single interface, and it is possible to join the same group on more than one interface. The address of "imr_interface" should be INADDR_ANY to choose the default multicast interface, or one of the host's local addresses to choose a particular (multicast-capable) interface.
The maximum number of memberships is limited only by memory and what the network card supports.
The following code sample can be used to drop a membership


struct ip_mreq mreq;
setsockopt(sock, IPPROTO_IP, IP_DROP_MEMBERSHIP,
(char*)&mreq,sizeof(mreq))
-----------------------------------------------------------------
也就是说:
加入一个组播组:
setsockopt(sock, IPPROTO_IP, IP_ADD_MEMBERSHIP,
(char*)&mreq, sizeof(mreq))
离开一个组播组:
setsockopt(sock, IPPROTO_IP, IP_DROP_MEMBERSHIP,
(char*)&mreq,sizeof(mreq))

在Indy 9中有支持multicast的控件:IdIPMCastServer
unit IdIPMCastServer;

{

History:

Date By Description
---------- ---------- --------------------------------------------------
2001-10-16 DSiders Modified TIdIPMCastServer.MulticastBuffer to
validate the AHost argument to the method instead
of the MulticastGroup property.

??? Dr. Harley J. Mackenzie Initial revision.

}

interface

uses
Classes,
IdIPMCastBase, IdComponent, IdSocketHandle;

const
DEF_IMP_LOOPBACK = True;
DEF_IMP_TTL = 1;

type
TIdIPMCastServer = class(TIdIPMCastBase)
protected
FBinding: TIdSocketHandle;
FLoopback: Boolean;
FTimeToLive: Byte;
//
procedure CloseBinding; override;
function GetActive: Boolean; override;
function GetBinding: TIdSocketHandle; override;
procedure Loaded; override;
procedure MulticastBuffer(AHost: string; const APort: Integer; var ABuffer; const AByteCount: integer);
procedure SetLoopback(const AValue: Boolean); virtual;
procedure SetTTL(const Value: Byte); virtual;
procedure SetTTLOption(InBinding: TIdSocketHandle; const Value: Byte); virtual;
public
constructor Create(AOwner: TComponent); override;
procedure Send(AData: string);
procedure SendBuffer(var ABuffer; const AByteCount: integer);
destructor Destroy; override;
//
property Binding: TIdSocketHandle read GetBinding;
published
property Active;
property Loopback: Boolean read FLoopback write SetLoopback default DEF_IMP_LOOPBACK;
property MulticastGroup;
property Port;
property TimeToLive: Byte read FTimeToLive write SetTTL default DEF_IMP_TTL;
end;

implementation

{ TIdIPMCastServer }

uses
IdResourceStrings, IdStack, IdStackConsts, IdGlobal, SysUtils;

constructor TIdIPMCastServer.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FLoopback := DEF_IMP_LOOPBACK;
FTimeToLive := DEF_IMP_TTL;
end;

procedure TIdIPMCastServer.CloseBinding;
var
Multicast: TMultiCast;
begin
Multicast.IMRMultiAddr := GStack.StringToTInAddr(FMulticastGroup);
Multicast.IMRInterface.S_addr := Id_INADDR_ANY;
FBinding.SetSockOpt(Id_IPPROTO_IP, Id_IP_DROP_MEMBERSHIP, pchar(@Multicast), SizeOf(Multicast));
FreeAndNil(FBinding);
end;

function TIdIPMCastServer.GetActive: Boolean;
begin
Result := inherited GetActive or (Assigned(FBinding) and FBinding.HandleAllocated);
end;

function TIdIPMCastServer.GetBinding: TIdSocketHandle;
var
Multicast : TMultiCast;
begin
if not Assigned(FBinding) then begin
FBinding := TIdSocketHandle.Create(nil);
end;
if not FBinding.HandleAllocated then begin
FBinding.AllocateSocket(Id_SOCK_DGRAM);
FBinding.Bind;
Multicast.IMRMultiAddr := GStack.StringToTInAddr(FMulticastGroup);
Multicast.IMRInterface.S_addr := Id_INADDR_ANY;
FBinding.SetSockOpt(Id_IPPROTO_IP, Id_IP_ADD_MEMBERSHIP, pchar(@Multicast), SizeOf(Multicast));
SetTTLOption(FBinding, FTimeToLive);
Loopback := True;
end;
Result := FBinding;
end;

procedure TIdIPMCastServer.Loaded;
var
b: Boolean;
begin
inherited Loaded;
b := FDsgnActive;
FDsgnActive := False;
Active := b;
end;

procedure TIdIPMCastServer.MulticastBuffer(AHost: string; const APort: Integer; var ABuffer; const AByteCount: integer);
begin
// DS - if not IsValidMulticastGroup(FMulticastGroup) then
if not IsValidMulticastGroup(AHost) then
raise EIdMCastNotValidAddress.Create(RSIPMCastInvalidMulticastAddress);
Binding.SendTo(AHost, APort, ABuffer, AByteCount);
end;

procedure TIdIPMCastServer.Send(AData: string);
begin
MulticastBuffer(FMulticastGroup, FPort, PChar(AData)^, Length(AData));
end;

procedure TIdIPMCastServer.SendBuffer(var ABuffer; const AByteCount: integer);
begin
MulticastBuffer(FMulticastGroup, FPort, ABuffer, AByteCount);
end;

procedure TIdIPMCastServer.SetLoopback(const AValue: Boolean);
var
LThisLoopback: Integer;
begin
if FLoopback <> AValue then begin
if FDsgnActive or (Assigned(Binding) and Binding.HandleAllocated) then begin
if AValue then begin
LThisLoopback := 1;
end else begin
LThisLoopback := 0;
end;
Binding.SetSockOpt(Id_IPPROTO_IP, Id_IP_MULTICAST_LOOP, PChar(@LThisLoopback)
, SizeOf(LThisLoopback));
end;
FLoopback := AValue;
end;
end;

procedure TIdIPMCastServer.SetTTL(const Value: Byte);
begin
if (FTimeToLive <> Value) then begin
SetTTLOption(FBinding, Value);
FTimeToLive := Value;
end;
end;

procedure TIdIPMCastServer.SetTTLOption(InBinding: TIdSocketHandle; const Value: Byte);
var
ThisTTL: Integer;
begin
if (FDsgnActive or (Assigned(InBinding) and InBinding.HandleAllocated)) then begin
ThisTTL := Value;
InBinding.SetSockOpt(Id_IPPROTO_IP, Id_IP_MULTICAST_TTL, pchar(@ThisTTL), SizeOf(ThisTTL));
end;
end;

destructor TIdIPMCastServer.Destroy;
begin
Active := False;
inherited Destroy;
end;

end.

如果自己用socket api写,和一般的server类似,只要多加一个SetSockOpt就可以了。

 
多人接受答案了。
 
顶部