IdRawClient.pas 793 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. $Project$
  3. $Workfile$
  4. $Revision$
  5. $DateUTC$
  6. $Id$
  7. This file is part of the Indy (Internet Direct) project, and is offered
  8. under the dual-licensing agreement described on the Indy website.
  9. (http://www.indyproject.org/)
  10. Copyright:
  11. (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All rights reserved.
  12. }
  13. {
  14. $Log$
  15. }
  16. {
  17. Rev 1.0 11/13/2002 08:45:32 AM JPMugaas
  18. }
  19. unit IdRawClient;
  20. interface
  21. {$i IdCompilerDefines.inc}
  22. uses
  23. IdGlobal,
  24. IdRawBase;
  25. type
  26. TIdRawClient = class(TIdRawBase)
  27. published
  28. property ReceiveTimeout;
  29. property Host;
  30. property Port;
  31. property Protocol;
  32. property ProtocolIPv6;
  33. property IPVersion default ID_DEFAULT_IP_VERSION;
  34. end;
  35. implementation
  36. { TIdRawClient }
  37. end.