ns-3 Direct Code Execution
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ns3-socket-fd-factory.h
Go to the documentation of this file.
1 #ifndef NS3_SOCKET_FD_FACTORY_H
2 #define NS3_SOCKET_FD_FACTORY_H
3 
4 #include "socket-fd-factory.h"
5 
6 namespace ns3 {
7 
8 class SocketFactory;
9 
11 {
12 public:
13  static TypeId GetTypeId (void);
15  void NotifyNewAggregate (void);
16 
17  virtual UnixFd * CreateSocket (int domain, int type, int protocol);
18 private:
19  Ptr<SocketFactory> m_netlink;
20 };
21 
22 } // namespace ns3
23 
24 #endif /* NS3_SOCKET_FD_FACTORY_H */