dcmqrscp.cfg.in 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #-----------------------------------------------------------------------
  2. #
  3. # Example configuration file for the dcmqrdb and dcmqrti applications.
  4. #
  5. # - this file is specialized for use as a local 'pacs' simulator for testing
  6. # ctkDICOM* applications
  7. # - the location of the dicom store is configured by cmake to be in the build tree
  8. #
  9. #-----------------------------------------------------------------------
  10. # Global Configuration Parameters
  11. NetworkType = "tcp"
  12. NetworkTCPPort = 11112
  13. MaxPDUSize = 16384
  14. MaxAssociations = 16
  15. Display = "no"
  16. HostTable BEGIN
  17. #
  18. # The HostTable defines symbolic names for collections of network
  19. # DICOM Application Entities. A symbolic name can represent a single
  20. # application entity or it can represent a group of application entities.
  21. # Each DICOM application entity is defined by a triple consisting of
  22. # Application Entitiy Title, host name and TCP/IP port number.
  23. #
  24. # Entry Format: SymbolicName = ( AETitle, HostName, Portnumber ), ... |
  25. # SymbolicName = SymbolicName, ...
  26. #
  27. # NOTE: in the current implementation you cannot substitute an IP address
  28. # for a hostname.
  29. #
  30. #ctk = (ACME1, acmehost1, 5678)
  31. #acme2 = (ACME2, acmehost2, 5678)
  32. #acmeCTcompany = acme1, acme2
  33. #united1 = (UNITED1, unitedhost1, 104)
  34. #united2 = (UNITED2, unitedhost2, 104)
  35. #unitedMRcompany = united1, united2
  36. #
  37. commontk = (CTK_AE,localhost,11112)
  38. commontk_client = (CTK_CLIENT_AE, localhost, 11113)
  39. #
  40. HostTable END
  41. VendorTable BEGIN
  42. #
  43. # The VendorTable is used by the dcmqrdb and dcmqrti applications.
  44. # You can give a vendor name (r.h.s. entry below) to the dcmqrti
  45. # program and it will talk to all hosts and AEs of the vendor.
  46. # The dcmqrdb program can use the vendor table to restrict move destination
  47. # to hosts belonging to a vendor.
  48. # Also, the dcmqrti and dcmqrdb programs use the name defined on the left hand side
  49. # as the vendor name to display above images.
  50. #
  51. # The format:
  52. # VendorName = SymbolicName
  53. # The symbolic name should be defined in the HostTable.
  54. #
  55. #"Acme CT Company" = acmeCTcompany
  56. #"United MR Company" = unitedMRcompany
  57. "The Common Toolkit" = commontk
  58. "The Common Toolkit Client" = commontk_client
  59. #
  60. VendorTable END
  61. AETable BEGIN
  62. #
  63. # Each row of the AETable defines an Application Entities (AE) Title known
  64. # to the dcmqrdb application. Each AE Title represents a separate
  65. # image database located in the specified file system directory (storage area).
  66. # Each AE Title has read/write, quota and peer access restrictions.
  67. #
  68. # Entry Format: AETitle StorageArea Access Quota Peers
  69. # AccessFormat: R | RW | W
  70. # Quota Format: ( maxStudies, maxBytesPerStudy )
  71. # Peers Format: ( Hostname, AETitle, Portnumber ), ... |
  72. # Entry in HostTable |
  73. # ANY
  74. #
  75. #COMMON /home/dicom/db/COMMON R (200, 1024mb) ANY
  76. #ACME_STORE /home/dicom/db/ACME_STORE RW (9, 1024mb) acmeCTcompany
  77. #UNITED_STORE /home/dicom/db/UNITED_STORE RW (9, 1024mb) unitedMRcompany
  78. CTK_AE @DCMQRSCP_STORE_DIR@ RW (200, 1024mb) commontk
  79. #
  80. AETable END