Stay organized with collections
Save and categorize content based on your preferences.
VmSocketAddress
class VmSocketAddress : SocketAddress
A virtio-vsock address VmSocketAddress
.
virtio-vsock socket address, linux specific.
VmSocketAddress
corresponds to struct sockaddr_vm
in bionic/libc/kernel/uapi/linux/vm_sockets.h.
Currently virtio-vsock is used as a generic purpose pipe in emulators to talk to the host. Most I/O operations using this address via Os
class will require additional permissions to talk to the host.
Summary
Public constructors |
Creates a new instance of VmSocketAddress.
|
Public methods |
Int |
Returns the value of the svmCid field
|
Int |
Returns the value of the svmPort field
|
Public constructors
VmSocketAddress
VmSocketAddress(
svmPort: Int,
svmCid: Int)
Creates a new instance of VmSocketAddress.
Parameters |
svmPort |
Int: The svmPort field value, see OsConstants.VMADDR_PORT_ANY . |
svmCid |
Int: The svmCid field value, see OsConstants.VMADDR_CID_* for VMADDR_CID_* values. |
Public methods
getSvmCid
fun getSvmCid(): Int
Returns the value of the svmCid field
getSvmPort
fun getSvmPort(): Int
Returns the value of the svmPort field
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# VmSocketAddress\n\nAdded in [API level 33](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nVmSocketAddress\n===============\n\n*** ** * ** ***\n\nKotlin \\|[Java](/reference/android/system/VmSocketAddress \"View this page in Java\") \n\n```\nclass VmSocketAddress : SocketAddress\n```\n\n|---|---|-------------------------------------|\n| [kotlin.Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) |||\n| ↳ | [java.net.SocketAddress](../../java/net/SocketAddress.html#) ||\n| | ↳ | [android.system.VmSocketAddress](#) |\n\nA virtio-vsock address [VmSocketAddress](#).\n\nvirtio-vsock socket address, linux specific.\n\n[VmSocketAddress](#) corresponds to `struct sockaddr_vm` in bionic/libc/kernel/uapi/linux/vm_sockets.h.\n\nCurrently virtio-vsock is used as a generic purpose pipe in emulators to talk to the host. Most I/O operations using this address via [Os](/reference/kotlin/android/system/Os) class will require additional permissions to talk to the host.\n\nSummary\n-------\n\n| Public constructors ||\n|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|\n| [VmSocketAddress](#VmSocketAddress(kotlin.Int,%20kotlin.Int))`(`svmPort:` `[Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`, `svmCid:` `[Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`)` Creates a new instance of VmSocketAddress. |\n\n| Public methods ||\n|----------------------------------------------------------------------------|------------------------------------------------------------------------|\n| [Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) | [getSvmCid](#getSvmCid())`()` Returns the value of the svmCid field |\n| [Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) | [getSvmPort](#getSvmPort())`()` Returns the value of the svmPort field |\n\nPublic constructors\n-------------------\n\n### VmSocketAddress\n\nAdded in [API level 33](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nVmSocketAddress(\n svmPort: Int, \n svmCid: Int)\n```\n\nCreates a new instance of VmSocketAddress.\n\n| Parameters ||\n|-----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `svmPort` | [Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html): The svmPort field value, see [OsConstants.VMADDR_PORT_ANY](/reference/kotlin/android/system/OsConstants#VMADDR_PORT_ANY:kotlin.Int). |\n| `svmCid` | [Int](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html): The svmCid field value, see OsConstants.VMADDR_CID_\\* for VMADDR_CID_\\* values. |\n\nPublic methods\n--------------\n\n### getSvmCid\n\nAdded in [API level 33](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nfun getSvmCid(): Int\n```\n\nReturns the value of the svmCid field \n\n### getSvmPort\n\nAdded in [API level 33](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nfun getSvmPort(): Int\n```\n\nReturns the value of the svmPort field"]]