my application needs to read and write to a Unix domain socket. How can I do that from Pharo?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I don't think you can do it with the Socket library. The primitives have It looks like you'll have to use FFI or write your own plugin. |
|||
|
|
|
Actually, the new SocketPlugin primitives allow to access all socket families, not just AF_INET. I know it can do AF_INET6 besides AF_INET for sure, and I'm almost sure it can do all others as well. Pharo may be lacking the new in-image code to access those primitives, I don't know. But e.g. Squeak Etoys was using them on the OLPC XO machine to do IPv6 mesh networking. |
|||||||||||
|