android - What is the does this mean ls = new LocalServerSocket("mycomputer")? -
i'm trying understand sockets , see basic class initialization goes this
localserversocket ls = new localserversocket("mycomputer"); what "mycomputer" represent ?
i read android api localserversocket , says it's af_local linux namespace, me seems name of directory. want know how able communicate linux namespace windows computer initialize localserversocket , how create af_local namespace on linux machine?
what want know how able communicate linux namespace windows computer
you can't. quoting wikipedia:
a unix domain socket or ipc socket (inter-process communication socket) data communications endpoint exchanging data between processes executing within same host operating system
Comments
Post a Comment