DICOM Association management class.
DICOM Association management class.Manages the DICOM association state machine, presentation context negotiation, and DIMSE message exchange per PS3.8.
Usage
association_config config;
config.calling_ae_title = "MY_SCU";
config.called_ae_title = "REMOTE_SCP";
config.proposed_contexts.push_back({
1,
"1.2.840.10008.1.1",
{"1.2.840.10008.1.2.1"}
});
auto result = association::connect("192.168.1.100", 104, config);
if (result.is_ok()) {
auto& assoc = result.value();
assoc.release();
}