IpSecTransformState.GetReplayBitmap Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieve the replay bitmap
[Android.Runtime.Register("getReplayBitmap", "()[B", "", ApiSince=35)]
public byte[] GetReplayBitmap ();
[<Android.Runtime.Register("getReplayBitmap", "()[B", "", ApiSince=35)>]
member this.GetReplayBitmap : unit -> byte[]
Returns
- Attributes
Remarks
Retrieve the replay bitmap
This bitmap represents a replay window, allowing the caller to observe out-of-order delivery. The last bit represents the highest sequence number received so far and bits for the received packets will be marked as true.
The size of a replay bitmap will never change over the lifetime of an IpSecTransform
The replay bitmap is solely useful for inbound IpSecTransforms. For outbound IpSecTransforms, all bits will be unchecked.
Java documentation for android.net.IpSecTransformState.getReplayBitmap()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.