1.. highlight:: c 2 3.. _krb5-replay-data-struct: 4 5krb5_replay_data 6================ 7 8.. 9.. c:type:: krb5_replay_data 10.. 11 12Replay data. 13 14Sequence number and timestamp information output by krb5_rd_priv() and krb5_rd_safe(). 15 16Declaration 17------------ 18 19typedef struct krb5_replay_data krb5_replay_data 20 21 22Members 23--------- 24 25 26.. c:member:: krb5_timestamp krb5_replay_data.timestamp 27 28 Timestamp, seconds portion. 29 30 31.. c:member:: krb5_int32 krb5_replay_data.usec 32 33 Timestamp, microseconds portion. 34 35 36.. c:member:: krb5_ui_4 krb5_replay_data.seq 37 38 Sequence number. 39 40 41