IdRawClient.pas 795 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. {$i IdCompilerDefines.inc}
  21. interface
  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.