|
boolean(* DTLTransport::IsConnectionConfigEqual)(DTLTransport transport, uint32 size, const void *config1, const void *config2) |
Report if two Transport DTLConnectionConfigs are equal.
This callback may be NULL if PCRMem_Compare is sufficient to determine equality.
- Parameters
-
transport | The Transport. This parameter must not be NULL. |
size | The size in bytes of the configs. This parameter must not be NULL. |
config1 | The first DTLConnectionConfig to compare. Must not be NULL and must be associated with transport. |
config2 | The second DTLConnectionConfig to compare. Must not be NULL and must be associated with transport. |
- Return values
-
TRUE | The two ConnectionConfigs are equivalent. |
FALSE | The two ConnectionConfigs are different, or either ConnectionConfig has an associated transport different than transport. |
|