Neal H Walfield <[EMAIL PROTECTED]> writes: > Auth lives on /servers/auth; pflocal lives on /server/socket/1. > > > I ran into this myself. I think that "*2*" is the correct one to > > use. So I believe this is what one does: > > /servers/socket/2 is where the pfinet server normally lives.
And the "1" and "2" comes from the socket.h PF_* constants, #define PF_UNSPEC 0 /* Unspecified. */ #define PF_LOCAL 1 /* Local to host (pipes and file-domain). */ #define PF_UNIX PF_LOCAL /* Old BSD name for PF_LOCAL. */ #define PF_FILE PF_LOCAL /* Another non-standard name for PF_LOCAL. */ #define PF_INET 2 /* IP protocol family. */ #define PF_AX25 3 /* Amateur Radio AX.25. */ #define PF_IPX 4 /* Novell Internet Protocol. */ ... /Niels

