Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / libc / src / nroute.inc
Size: Mime:

Function RT_ADDRCLASS(flags: u_int32_t): u_int32_t;

begin
  Result:=flags shr 23;
end;


Function RT_TOS(tos: Integer): Integer;

begin
  Result:=tos and IPTOS_TOS_MASK;
end;

Function RT_LOCALADDR(flags: u_int32_t): Boolean;

begin
  Result:=(flags and RTF_ADDRCLASSMASK)=(RTF_LOCAL or RTF_INTERFACE);
end;