equal
deleted
inserted
replaced
22 #include "node.h" |
22 #include "node.h" |
23 #include "packet-socket.h" |
23 #include "packet-socket.h" |
24 |
24 |
25 namespace ns3 { |
25 namespace ns3 { |
26 |
26 |
27 const InterfaceId PacketSocketFactory::iid = MakeInterfaceId ("Packet", |
27 InterfaceId |
28 SocketFactory::iid); |
28 PacketSocketFactory::iid (void) |
|
29 { |
|
30 static InterfaceId iid = MakeInterfaceId ("Packet", |
|
31 SocketFactory::iid ()); |
|
32 return iid; |
|
33 } |
29 |
34 |
30 PacketSocketFactory::PacketSocketFactory () |
35 PacketSocketFactory::PacketSocketFactory () |
31 {} |
36 {} |
32 |
37 |
33 Ptr<Socket> PacketSocketFactory::CreateSocket (void) |
38 Ptr<Socket> PacketSocketFactory::CreateSocket (void) |