TCPServerPlayground.dpr 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. { $HDR$}
  2. {**********************************************************************}
  3. { Unit archived using Team Coherence }
  4. { Team Coherence is Copyright 2002 by Quality Software Components }
  5. { }
  6. { For further information / comments, visit our WEB site at }
  7. { http://www.TeamCoherence.com }
  8. {**********************************************************************}
  9. {}
  10. { $Log: 17083: TCPServerPlayground.dpr }
  11. {
  12. Rev 1.0 3/13/2003 6:48:14 PM BGooijen
  13. }
  14. {
  15. Rev 1.0 3/13/2003 5:03:20 PM BGooijen
  16. Initial check in
  17. }
  18. {
  19. { Rev 1.3 2003.02.25 1:38:24 AM czhower
  20. }
  21. {
  22. { Rev 1.1 2003.01.09 11:24:54 PM czhower
  23. }
  24. {
  25. { Rev 1.0 2002.12.07 6:43:44 PM czhower
  26. }
  27. program TCPServerPlayground;
  28. {
  29. // TODO:
  30. -TIdThreadWeaver.Relinquish; - prob done now
  31. -TIdWorkThread.HandleExceptOps - Can test by stopping web server
  32. -In the future we'll need to add "hints". That is if you want to read 3 lines, before calling readln 3 times we'll call HintReadLn(3) so that the subsystem can operate more efficiently. It wont be required, but it will speed things up a LOT.
  33. -Remove Reads/Writes from TCPConnection
  34. -IOHandler at design time
  35. }
  36. uses
  37. Forms,
  38. Main in 'Main.pas' {formMain},
  39. Global in 'Global.pas',
  40. IdWorkOpUnits in '..\..\..\Core\IdWorkOpUnits.pas',
  41. IdServerIOHandlerChain in '..\..\..\Core\IdServerIOHandlerChain.pas';
  42. {$R *.res}
  43. begin
  44. Application.Initialize;
  45. Application.CreateForm(TformMain, formMain);
  46. Application.Run;
  47. end.