From ee937667fd0ecd82faab4c88d756b906fb625f1a Mon Sep 17 00:00:00 2001 From: sc Date: Tue, 28 Nov 2000 17:07:47 +0000 Subject: Integration into IvyLeague Uvh -> Ivl Multiplexer.* is renamed into Scheduler.* A few name conflicts in the merger with ex-DNN have been solved Imakefile is replaced by Makefile Created InetAddress.* and UnixAddress.* from Address.* Created IrdaAddress.* OLD/TextStream has been updated --- comm/UnixAddress.h | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 comm/UnixAddress.h (limited to 'comm/UnixAddress.h') diff --git a/comm/UnixAddress.h b/comm/UnixAddress.h new file mode 100644 index 0000000..d21b619 --- /dev/null +++ b/comm/UnixAddress.h @@ -0,0 +1,43 @@ +/* + * The Unix Channel + * + * by Michel Beaudouin-Lafon + * + * Copyright 1990-1997 + * Laboratoire de Recherche en Informatique (LRI) + * + * Unix Addresses + * + * $Id$ + * $CurLog$ + * Created from Address.h + */ + +#ifndef UnixAddress_H_ +#define UnixAddress_H_ + +#include "cplus_bugs.h" +#include "error.h" +#include "Address.h" + + + +class IvlUnixAddress : public IvlAddress { +protected: + struct sockaddr_un Addr; + +public: + IvlUnixAddress (); + IvlUnixAddress (const char*); + ~IvlUnixAddress (); + + int Family (); + int Length (); + SockAddr* GetSockAddr (); + char* StrRepr (char* buf); +}; + + + + +#endif /* UnixAddress_H_ */ -- cgit v1.1