The DejaVU Framework -- hush 3.0
[.] Papers Tutorials Examples Manuals Interfaces Sources Packages Resources ?

include: socket.h hush-3.0b4/auxiliary/net/cs/tcp


[.] - [up] [top] - index C++ make include scripts
  // tcp/socket.h
  
  ifndef _TCP_SOCKET_H_
  define _TCP_SOCKET_H_
  
  include <netinet/in.h>
  
  

tcpsocket


  class tcpsocket
  {
  public:
      tcpsocket();
   
      virtual int portnr() const;
      virtual void close();
   
  protected:
      static void sigpipe_handler(int signr);
   
      static void (*_old_sigpipe_handler)(int signr);
      static int _got_sigpipe;
      static int _handler_installed;
   
      struct sockaddr_in _name;
      int _portnr;
      int _sd;
  };

slide: tcpsocket

   
   
  endif _TCP_SOCKET_H_
  
  

[.] Papers Tutorials Examples Manuals Interfaces Sources Packages Resources ?
Hush Online Technology
hush@cs.vu.nl
09/09/98