The local socket which is based on NDK:
Android NDK: From Elementary to Expert Episode 18
The local socket protocol addresses consists of only a name. It does not have an IP address or a port number. Local socket names can be created under two different namespaces:

  • Abstract namespace is maintained within the local socket communication protocol module. The socket name gets prefixed by a NULL character for binding the socket name.
  • Filesystem namespace is maintained through the file system as a special socket file. The socket name gets directly passed to the sockaddr_un structure for binding the socket name to the socket.

相关文章:

  • 2022-12-23
  • 2022-03-03
  • 2022-12-23
  • 2021-09-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-01
猜你喜欢
  • 2022-01-15
  • 2021-09-09
  • 2021-07-17
  • 2022-02-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案