> > In the documentation of socket appears the fllowing: > $sockaddr = 'S n a4 x8' > > What means this???
it is a template for packing the generic C socket adr structure. readup on sockets for deeper explanation. the adt string is packed into structure of: a signed short, followed by an integer in network order, four unsigned bytes, and eight NULL characters. YOUR MUCH better off using sockaddr_in() to handle this for you. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]