|
|
| boolean(* DTLTransport::IsServerConfigEqual)(DTLTransport transport, uint32 size, const void *config1, const void *config2) |
Report if two Transport DTLServerConfigs 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 DTLServerConfig to compare. Must not be NULL and must be associated with transport. |
| config2 | The second DTLServerConfig to compare. Must not be NULL and must be associated with transport. |
- Return values
-
| TRUE | The two DTLServerConfigs are equivalent. |
| FALSE | The two DTLServerConfigs are different, or either ServerConfig has an associated transport different than transport. |
|