Appendix A. Additonal Source Code


 
Network Programming with Perl
By Lincoln  D.  Stein
Slots : 1
Table of Contents
Chapter  22.   UNIX-Domain Sockets

    Content

Summary

UNIX-domain sockets can be used for communication between two or more processes on the same host. Instead of using IP addresses and port numbers as the rendezvous points, UNIX-domain sockets use physical file names on the local filesystem. This allows file permissions to be used for access control, but also complicates server code by requiring servers to unlink the file after the socket is closed.

Compared to INET-domain (TCP/IP) sockets, UNIX-domain sockets provide greater efficiency in interprocess communication and security against network-based attacks. However, an important disadvantage is that UNIX-domain sockets are not implemented as widely as TCP/IP sockets.


   
Top


Network Programming with Perl
Network Programming with Perl
ISBN: 0201615711
EAN: 2147483647
Year: 2000
Pages: 173

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net