From: David Rodriguez Date: 2008-11-08T03:08:30+09:00 Subject: Re: Unix Sockets SOCK_DGRAM Mark Thanks. It worked just fine. I just had to do: $path="home" dgram_socket = Socket::new(Socket::AF_UNIX, Socket::SOCK_DGRAM, 0) dgram_socket.send("HELLO RUBY", 0,Socket.pack_sockaddr_un($path)) Thanks a lot. David -- Posted via http://www.ruby-forum.com/.