Navigation
API > API/Runtime > API/Runtime/Sockets
Specifies how a platform specific timestamp (in this case, a packet timestamp) should be translated
| Name | ETimestampTranslation |
| Type | enum |
| Header File | /Engine/Source/Runtime/Sockets/Public/SocketTypes.h |
| Include Path | #include "SocketTypes.h" |
Syntax
enum ETimestampTranslation
{
LocalTimestamp,
TimeDelta,
}
Values
| Name | Remarks |
|---|---|
| LocalTimestamp | Translates the timestamp into a local timestamp, comparable (with accuracy caveats) to other local timestamps. |
| TimeDelta | The delta between present platform time vs timestamp - faster than local translation, less accuracy caveats. |