A Discrete-Event Network Simulator
API
socket.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2006 Georgia Tech Research Corporation
4  * 2007 INRIA
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation;
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Authors: George F. Riley<riley@ece.gatech.edu>
20  * Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
21  */
22 
23 #ifndef NS3_SOCKET_H
24 #define NS3_SOCKET_H
25 
26 #include "ns3/callback.h"
27 #include "ns3/ptr.h"
28 #include "ns3/tag.h"
29 #include "ns3/object.h"
30 #include "ns3/net-device.h"
31 #include "address.h"
32 #include <stdint.h>
33 #include "ns3/inet-socket-address.h"
34 #include "ns3/inet6-socket-address.h"
35 
36 namespace ns3 {
37 
38 
39 class Node;
40 class Packet;
41 
66 class Socket : public Object
67 {
68 public:
73  static TypeId GetTypeId (void);
74 
75  Socket (void);
76  virtual ~Socket (void);
77 
82  enum SocketErrno {
98  };
99 
104  enum SocketType {
109  };
110 
125  };
126 
139  {
142  };
143 
153  static Ptr<Socket> CreateSocket (Ptr<Node> node, TypeId tid);
161  virtual enum Socket::SocketErrno GetErrno (void) const = 0;
165  virtual enum Socket::SocketType GetSocketType (void) const = 0;
170  virtual Ptr<Node> GetNode (void) const = 0;
183  void SetConnectCallback (Callback<void, Ptr<Socket> > connectionSucceeded,
184  Callback<void, Ptr<Socket> > connectionFailed);
200  void SetCloseCallbacks (Callback<void, Ptr<Socket> > normalClose,
201  Callback<void, Ptr<Socket> > errorClose);
220  const Address &> connectionRequest,
221  Callback<void, Ptr<Socket>,
222  const Address&> newConnectionCreated);
231  uint32_t> dataSent);
246  void SetSendCallback (Callback<void, Ptr<Socket>, uint32_t> sendCb);
254  void SetRecvCallback (Callback<void, Ptr<Socket> >);
260  virtual int Bind (const Address &address) = 0;
261 
267  virtual int Bind () = 0;
268 
274  virtual int Bind6 () = 0;
275 
283  virtual int Close (void) = 0;
284 
291  virtual int ShutdownSend (void) = 0;
292 
299  virtual int ShutdownRecv (void) = 0;
300 
306  virtual int Connect (const Address &address) = 0;
307 
312  virtual int Listen (void) = 0;
313 
326  virtual uint32_t GetTxAvailable (void) const = 0;
327 
373  virtual int Send (Ptr<Packet> p, uint32_t flags) = 0;
374 
388  virtual int SendTo (Ptr<Packet> p, uint32_t flags,
389  const Address &toAddress) = 0;
390 
399  virtual uint32_t GetRxAvailable (void) const = 0;
400 
452  virtual Ptr<Packet> Recv (uint32_t maxSize, uint32_t flags) = 0;
453 
473  virtual Ptr<Packet> RecvFrom (uint32_t maxSize, uint32_t flags,
474  Address &fromAddress) = 0;
475 
477  // The remainder of these public methods are overloaded methods //
478  // or variants of Send() and Recv(), and they are non-virtual //
480 
490  int Send (Ptr<Packet> p);
491 
506  int Send (const uint8_t* buf, uint32_t size, uint32_t flags);
507 
508 
525  int SendTo (const uint8_t* buf, uint32_t size, uint32_t flags,
526  const Address &address);
527 
537  Ptr<Packet> Recv (void);
538 
553  int Recv (uint8_t* buf, uint32_t size, uint32_t flags);
554 
568  Ptr<Packet> RecvFrom (Address &fromAddress);
569 
587  int RecvFrom (uint8_t* buf, uint32_t size, uint32_t flags,
588  Address &fromAddress);
594  virtual int GetSockName (Address &address) const = 0;
595 
601  virtual int GetPeerName (Address &address) const = 0;
602 
625  virtual void BindToNetDevice (Ptr<NetDevice> netdevice);
626 
637 
638 
650  virtual bool SetAllowBroadcast (bool allowBroadcast) = 0;
651 
660  virtual bool GetAllowBroadcast () const = 0;
661 
674  void SetRecvPktInfo (bool flag);
675 
681  bool IsRecvPktInfo () const;
682 
691  void SetPriority (uint8_t priority);
692 
701  uint8_t GetPriority (void) const;
702 
779  static uint8_t IpTos2Priority (uint8_t ipTos);
780 
791  void SetIpTos (uint8_t ipTos);
792 
801  uint8_t GetIpTos (void) const;
802 
814  void SetIpRecvTos (bool ipv4RecvTos);
815 
824  bool IsIpRecvTos (void) const;
825 
836  void SetIpv6Tclass (int ipTclass);
837 
846  uint8_t GetIpv6Tclass (void) const;
847 
859  void SetIpv6RecvTclass (bool ipv6RecvTclass);
860 
869  bool IsIpv6RecvTclass (void) const;
870 
879  virtual void SetIpTtl (uint8_t ipTtl);
880 
889  virtual uint8_t GetIpTtl (void) const;
890 
902  void SetIpRecvTtl (bool ipv4RecvTtl);
903 
912  bool IsIpRecvTtl (void) const;
913 
922  virtual void SetIpv6HopLimit (uint8_t ipHopLimit);
923 
932  virtual uint8_t GetIpv6HopLimit (void) const;
933 
945  void SetIpv6RecvHopLimit (bool ipv6RecvHopLimit);
946 
955  bool IsIpv6RecvHopLimit (void) const;
956 
970  virtual void Ipv6JoinGroup (Ipv6Address address, Ipv6MulticastFilterMode filterMode, std::vector<Ipv6Address> sourceAddresses);
971 
979  virtual void Ipv6JoinGroup (Ipv6Address address);
980 
984  virtual void Ipv6LeaveGroup (void);
985 
986 protected:
991  void NotifyConnectionSucceeded (void);
992 
997  void NotifyConnectionFailed (void);
998 
1003  void NotifyNormalClose (void);
1004 
1009  void NotifyErrorClose (void);
1010 
1022  bool NotifyConnectionRequest (const Address &from);
1023 
1028  void NotifyNewConnectionCreated (Ptr<Socket> socket, const Address &from);
1029 
1035  void NotifyDataSent (uint32_t size);
1036 
1042  void NotifySend (uint32_t spaceAvailable);
1043 
1047  void NotifyDataRecv (void);
1048 
1049  // inherited function, no doc necessary
1050  virtual void DoDispose (void);
1051 
1057  bool IsManualIpv6Tclass (void) const;
1058 
1064  bool IsManualIpTtl (void) const;
1065 
1071  bool IsManualIpv6HopLimit (void) const;
1072 
1076 
1077 private:
1087 
1088  uint8_t m_priority;
1089 
1090  //IPv4 options
1094 
1095  uint8_t m_ipTos;
1096  uint8_t m_ipTtl;
1097 
1098  //IPv6 options
1103 
1104  uint8_t m_ipv6Tclass;
1105  uint8_t m_ipv6HopLimit;
1106 };
1107 
1112 class SocketIpTtlTag : public Tag
1113 {
1114 public:
1115  SocketIpTtlTag ();
1116 
1122  void SetTtl (uint8_t ttl);
1123 
1129  uint8_t GetTtl (void) const;
1130 
1135  static TypeId GetTypeId (void);
1136 
1137  // inherited function, no need to doc.
1138  virtual TypeId GetInstanceTypeId (void) const;
1139 
1140  // inherited function, no need to doc.
1141  virtual uint32_t GetSerializedSize (void) const;
1142 
1143  // inherited function, no need to doc.
1144  virtual void Serialize (TagBuffer i) const;
1145 
1146  // inherited function, no need to doc.
1147  virtual void Deserialize (TagBuffer i);
1148 
1149  // inherited function, no need to doc.
1150  virtual void Print (std::ostream &os) const;
1151 
1152 private:
1153  uint8_t m_ttl;
1154 };
1155 
1161 {
1162 public:
1164 
1170  void SetHopLimit (uint8_t hopLimit);
1171 
1177  uint8_t GetHopLimit (void) const;
1178 
1183  static TypeId GetTypeId (void);
1184 
1185  // inherited function, no need to doc.
1186  virtual TypeId GetInstanceTypeId (void) const;
1187 
1188  // inherited function, no need to doc.
1189  virtual uint32_t GetSerializedSize (void) const;
1190 
1191  // inherited function, no need to doc.
1192  virtual void Serialize (TagBuffer i) const;
1193 
1194  // inherited function, no need to doc.
1195  virtual void Deserialize (TagBuffer i);
1196 
1197  // inherited function, no need to doc.
1198  virtual void Print (std::ostream &os) const;
1199 
1200 private:
1201  uint8_t m_hopLimit;
1202 };
1203 
1209 {
1210 public:
1212 
1216  void Enable (void);
1217 
1221  void Disable (void);
1222 
1228  bool IsEnabled (void) const;
1229 
1234  static TypeId GetTypeId (void);
1235 
1236  // inherited function, no need to doc.
1237  virtual TypeId GetInstanceTypeId (void) const;
1238 
1239  // inherited function, no need to doc.
1240  virtual uint32_t GetSerializedSize (void) const;
1241 
1242  // inherited function, no need to doc.
1243  virtual void Serialize (TagBuffer i) const;
1244 
1245  // inherited function, no need to doc.
1246  virtual void Deserialize (TagBuffer i);
1247 
1248  // inherited function, no need to doc.
1249  virtual void Print (std::ostream &os) const;
1250 private:
1252 };
1253 
1258 class SocketIpTosTag : public Tag
1259 {
1260 public:
1261  SocketIpTosTag ();
1262 
1268  void SetTos (uint8_t tos);
1269 
1275  uint8_t GetTos (void) const;
1276 
1281  static TypeId GetTypeId (void);
1282 
1283  // inherited function, no need to doc.
1284  virtual TypeId GetInstanceTypeId (void) const;
1285 
1286  // inherited function, no need to doc.
1287  virtual uint32_t GetSerializedSize (void) const;
1288 
1289  // inherited function, no need to doc.
1290  virtual void Serialize (TagBuffer i) const;
1291 
1292  // inherited function, no need to doc.
1293  virtual void Deserialize (TagBuffer i);
1294 
1295  // inherited function, no need to doc.
1296  virtual void Print (std::ostream &os) const;
1297 private:
1298  uint8_t m_ipTos;
1299 };
1300 
1304 class SocketPriorityTag : public Tag
1305 {
1306 public:
1307  SocketPriorityTag ();
1308 
1314  void SetPriority (uint8_t priority);
1315 
1321  uint8_t GetPriority (void) const;
1322 
1327  static TypeId GetTypeId (void);
1328 
1329  // inherited function, no need to doc.
1330  virtual TypeId GetInstanceTypeId (void) const;
1331 
1332  // inherited function, no need to doc.
1333  virtual uint32_t GetSerializedSize (void) const;
1334 
1335  // inherited function, no need to doc.
1336  virtual void Serialize (TagBuffer i) const;
1337 
1338  // inherited function, no need to doc.
1339  virtual void Deserialize (TagBuffer i);
1340 
1341  // inherited function, no need to doc.
1342  virtual void Print (std::ostream &os) const;
1343 private:
1344  uint8_t m_priority;
1345 };
1346 
1351 class SocketIpv6TclassTag : public Tag
1352 {
1353 public:
1355 
1361  void SetTclass (uint8_t tclass);
1362 
1368  uint8_t GetTclass (void) const;
1369 
1374  static TypeId GetTypeId (void);
1375 
1376  // inherited function, no need to doc.
1377  virtual TypeId GetInstanceTypeId (void) const;
1378 
1379  // inherited function, no need to doc.
1380  virtual uint32_t GetSerializedSize (void) const;
1381 
1382  // inherited function, no need to doc.
1383  virtual void Serialize (TagBuffer i) const;
1384 
1385  // inherited function, no need to doc.
1386  virtual void Deserialize (TagBuffer i);
1387 
1388  // inherited function, no need to doc.
1389  virtual void Print (std::ostream &os) const;
1390 private:
1391  uint8_t m_ipv6Tclass;
1392 };
1393 
1394 } // namespace ns3
1395 
1396 #endif /* NS3_SOCKET_H */
uint8_t m_ipv6HopLimit
the socket IPv6 Hop Limit
Definition: socket.h:1105
static TypeId GetTypeId(void)
Get the type ID.
Definition: socket.cc:626
void SetTclass(uint8_t tclass)
Set the tag's Tclass.
Definition: socket.cc:906
virtual void Serialize(TagBuffer i) const
Definition: socket.cc:941
bool IsManualIpTtl(void) const
Checks if the socket has a specific IPv4 TTL set.
Definition: socket.cc:377
virtual void Print(std::ostream &os) const
Definition: socket.cc:952
virtual void Print(std::ostream &os) const
Definition: socket.cc:660
bool IsIpv6RecvHopLimit(void) const
Ask if the socket is currently passing information about IPv6 Hop Limit up the stack.
Definition: socket.cc:563
bool m_manualIpv6HopLimit
socket has IPv6 Hop Limit set
Definition: socket.h:1100
SocketErrno
Enumeration of the possible errors returned by a socket.
Definition: socket.h:82
virtual uint8_t GetIpTtl(void) const
Query the value of IP Time to Live field of this socket.
Definition: socket.cc:526
Callback template class.
Definition: callback.h:1176
void SetIpv6RecvTclass(bool ipv6RecvTclass)
Tells a socket to pass information about IPv6 Traffic Class up the stack.
Definition: socket.cc:507
uint8_t GetIpTos(void) const
Query the value of IP Type of Service of this socket.
Definition: socket.cc:459
This class implements a tag that carries the socket-specific HOPLIMIT of a packet to the IPv6 layer...
Definition: socket.h:1160
virtual int Bind6()=0
Allocate a local IPv6 endpoint for this socket.
virtual bool SetAllowBroadcast(bool allowBroadcast)=0
Configure whether broadcast datagram transmissions are allowed.
uint8_t m_hopLimit
the Hop Limit carried by the tag
Definition: socket.h:1201
void NotifyDataRecv(void)
Notify through the callback (if set) that some data have been received.
Definition: socket.cc:305
uint8_t GetTos(void) const
Get the tag's TOS.
Definition: socket.cc:797
virtual uint32_t GetSerializedSize(void) const
Definition: socket.cc:761
virtual int ShutdownSend(void)=0
Ptr< Packet > Recv(void)
Read a single packet from the socket.
Definition: socket.cc:175
bool m_dontFragment
DF bit value for outgoing packets.
Definition: socket.h:1251
Socket(void)
Definition: socket.cc:45
virtual void Ipv6JoinGroup(Ipv6Address address, Ipv6MulticastFilterMode filterMode, std::vector< Ipv6Address > sourceAddresses)
Joins a IPv6 multicast group.
Definition: socket.cc:569
void NotifyConnectionFailed(void)
Notify through the callback (if set) that the connection has not been established due to an error...
Definition: socket.cc:227
static TypeId GetTypeId(void)
Get the type ID.
Definition: socket.cc:747
Callback< bool, Ptr< Socket >, const Address & > m_connectionRequest
connection request callback
Definition: socket.h:1082
virtual void Deserialize(TagBuffer i)
Definition: socket.cc:947
virtual int GetSockName(Address &address) const =0
Get socket address.
virtual int ShutdownRecv(void)=0
void SetIpRecvTos(bool ipv4RecvTos)
Tells a socket to pass information about IP Type of Service up the stack.
Definition: socket.cc:465
static TypeId GetTypeId(void)
Get the type ID.
Definition: socket.cc:918
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition: socket.cc:814
void SetCloseCallbacks(Callback< void, Ptr< Socket > > normalClose, Callback< void, Ptr< Socket > > errorClose)
Detect socket recv() events such as graceful shutdown or error.
Definition: socket.cc:94
virtual uint8_t GetIpv6HopLimit(void) const
Query the value of IP Hop Limit field of this socket.
Definition: socket.cc:551
SocketType
Enumeration of the possible socket types.
Definition: socket.h:104
Callback< void, Ptr< Socket > > m_connectionSucceeded
connection succeeded callback
Definition: socket.h:1078
void SetTos(uint8_t tos)
Set the tag's TOS.
Definition: socket.cc:791
virtual uint32_t GetSerializedSize(void) const
Definition: socket.cc:877
bool m_recvPktInfo
if the socket should add packet info tags to the packet forwarded to L4.
Definition: socket.h:1074
bool IsEnabled(void) const
Checks if the DF (Don't Fragment) flag is set.
Definition: socket.cc:738
virtual void Serialize(TagBuffer i) const
Definition: socket.cc:767
static uint8_t IpTos2Priority(uint8_t ipTos)
Return the priority corresponding to a given TOS value.
Definition: socket.cc:408
This class implements a tag that carries the socket-specific TTL of a packet to the IP layer...
Definition: socket.h:1112
bool NotifyConnectionRequest(const Address &from)
Notify through the callback (if set) that an incoming connection is being requested by a remote host...
Definition: socket.cc:257
Ipv6Address m_ipv6MulticastGroupAddress
IPv6 multicast group address.
Definition: socket.h:1075
bool m_ipRecvTos
socket forwards IPv4 TOS tag to L4
Definition: socket.h:1092
bool IsRecvPktInfo() const
Get status indicating whether enable/disable packet information to socket.
Definition: socket.cc:364
uint8_t m_ipv6Tclass
the socket IPv6 Tclass
Definition: socket.h:1104
virtual enum Socket::SocketErrno GetErrno(void) const =0
Get last error number.
a polymophic address class
Definition: address.h:90
uint8_t m_priority
the priority carried by the tag
Definition: socket.h:1344
virtual int Listen(void)=0
Listen for incoming connections.
bool IsIpRecvTos(void) const
Ask if the socket is currently passing information about IP Type of Service up the stack...
Definition: socket.cc:471
void SetRecvPktInfo(bool flag)
Enable/Disable receive packet information to socket.
Definition: socket.cc:358
Ptr< NetDevice > GetBoundNetDevice()
Returns socket's bound netdevice, if any.
Definition: socket.cc:351
A low-level Socket API based loosely on the BSD Socket API.
Definition: socket.h:66
virtual void Deserialize(TagBuffer i)
Definition: socket.cc:889
uint8_t GetTclass(void) const
Get the tag's Tclass.
Definition: socket.cc:912
void SetTtl(uint8_t ttl)
Set the tag's TTL.
Definition: socket.cc:610
uint8_t m_ipTos
the socket IPv4 TOS
Definition: socket.h:1095
virtual int Bind()=0
Allocate a local IPv4 endpoint for this socket.
uint8_t m_priority
the socket priority
Definition: socket.h:1088
Callback< void, Ptr< Socket > > m_receivedData
data received callback
Definition: socket.h:1086
Callback< void, Ptr< Socket >, const Address & > m_newConnectionCreated
connection created callback
Definition: socket.h:1083
indicates whether the socket has a priority set.
Definition: socket.h:1304
static TypeId GetTypeId(void)
Get the type ID.
Definition: socket.cc:803
Callback< void, Ptr< Socket > > m_connectionFailed
connection failed callback
Definition: socket.h:1079
virtual bool GetAllowBroadcast() const =0
Query whether broadcast datagram transmissions are allowed.
bool IsManualIpv6Tclass(void) const
Checks if the socket has a specific IPv6 Tclass set.
Definition: socket.cc:371
void NotifyDataSent(uint32_t size)
Notify through the callback (if set) that some data have been sent.
Definition: socket.cc:285
virtual ~Socket(void)
Definition: socket.cc:65
void SetRecvCallback(Callback< void, Ptr< Socket > >)
Notify application when new data is available to be read.
Definition: socket.cc:128
static Ptr< Socket > CreateSocket(Ptr< Node > node, TypeId tid)
This method wraps the creation of sockets that is performed on a given node by a SocketFactory specif...
Definition: socket.cc:71
virtual void Print(std::ostream &os) const
Definition: socket.cc:779
virtual enum Socket::SocketType GetSocketType(void) const =0
void SetHopLimit(uint8_t hopLimit)
Set the tag's Hop Limit.
Definition: socket.cc:671
uint8_t m_ipTos
the TOS carried by the tag
Definition: socket.h:1298
void NotifyConnectionSucceeded(void)
Notify through the callback (if set) that the connection has been established.
Definition: socket.cc:217
Callback< void, Ptr< Socket > > m_errorClose
connection closed due to errors callback
Definition: socket.h:1081
virtual int Connect(const Address &address)=0
Initiate a connection to a remote host.
Callback< void, Ptr< Socket >, uint32_t > m_dataSent
data sent callback
Definition: socket.h:1084
SocketPriority
Enumeration of the possible socket priorities.
Definition: socket.h:118
bool IsManualIpv6HopLimit(void) const
Checks if the socket has a specific IPv6 Hop Limit set.
Definition: socket.cc:383
virtual uint32_t GetSerializedSize(void) const
Definition: socket.cc:642
void NotifyNormalClose(void)
Notify through the callback (if set) that the connection has been closed.
Definition: socket.cc:237
tag a set of bytes in a packet
Definition: tag.h:36
uint8_t m_ipTtl
the socket IPv4 TTL
Definition: socket.h:1096
void SetIpv6Tclass(int ipTclass)
Manually set IPv6 Traffic Class field.
Definition: socket.cc:477
Every class exported by the ns3 library is enclosed in the ns3 namespace.
virtual void Serialize(TagBuffer i) const
Definition: socket.cc:706
void NotifyNewConnectionCreated(Ptr< Socket > socket, const Address &from)
Notify through the callback (if set) that a new connection has been created.
Definition: socket.cc:275
virtual uint32_t GetSerializedSize(void) const
Definition: socket.cc:701
indicates whether the socket has IPV6_TCLASS set.
Definition: socket.h:1351
uint8_t GetIpv6Tclass(void) const
Query the value of IPv6 Traffic Class field of this socket.
Definition: socket.cc:501
virtual void Ipv6LeaveGroup(void)
Leaves IPv6 multicast group this socket is joined to.
Definition: socket.cc:586
static TypeId GetTypeId(void)
Get the type ID.
Definition: socket.cc:860
static TypeId GetTypeId(void)
Get the type ID.
Definition: socket.cc:37
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition: socket.cc:929
virtual void Deserialize(TagBuffer i)
Definition: socket.cc:773
bool IsIpv6RecvTclass(void) const
Ask if the socket is currently passing information about IPv6 Traffic Class up the stack...
Definition: socket.cc:513
uint8_t GetPriority(void) const
Get the tag's priority.
Definition: socket.cc:854
uint8_t m_ttl
the ttl carried by the tag
Definition: socket.h:1153
void SetSendCallback(Callback< void, Ptr< Socket >, uint32_t > sendCb)
Notify application when space in transmit buffer is added.
Definition: socket.cc:121
bool m_ipRecvTtl
socket forwards IPv4 TTL tag to L4
Definition: socket.h:1093
void SetAcceptCallback(Callback< bool, Ptr< Socket >, const Address & > connectionRequest, Callback< void, Ptr< Socket >, const Address & > newConnectionCreated)
Accept connection requests from remote hosts.
Definition: socket.cc:104
virtual void BindToNetDevice(Ptr< NetDevice > netdevice)
Bind a socket to specific device.
Definition: socket.cc:330
virtual void Print(std::ostream &os) const
Definition: socket.cc:895
void SetDataSentCallback(Callback< void, Ptr< Socket >, uint32_t > dataSent)
Notify application when a packet has been sent from transport protocol (non-standard socket call) ...
Definition: socket.cc:114
virtual void DoDispose(void)
Destructor implementation.
Definition: socket.cc:315
bool IsIpRecvTtl(void) const
Ask if the socket is currently passing information about IP_TTL up the stack.
Definition: socket.cc:538
static TypeId GetTypeId(void)
Get the type ID.
Definition: socket.cc:685
uint8_t GetHopLimit(void) const
Get the tag's Hop Limit.
Definition: socket.cc:677
void Disable(void)
Disables the DF (Don't Fragment) flag.
Definition: socket.cc:732
Describes an IPv6 address.
Definition: ipv6-address.h:48
read and write tag data
Definition: tag-buffer.h:51
Ptr< NetDevice > m_boundnetdevice
the device this socket is bound to (might be null).
Definition: socket.h:1073
void SetIpv6RecvHopLimit(bool ipv6RecvHopLimit)
Tells a socket to pass information about IPv6 Hop Limit up the stack.
Definition: socket.cc:557
Callback< void, Ptr< Socket > > m_normalClose
connection closed callback
Definition: socket.h:1080
virtual uint32_t GetSerializedSize(void) const
Definition: socket.cc:935
void SetPriority(uint8_t priority)
Manually set the socket priority.
Definition: socket.cc:389
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition: socket.cc:636
virtual void Serialize(TagBuffer i) const
Definition: socket.cc:826
virtual Ptr< Node > GetNode(void) const =0
Return the node this socket is associated with.
virtual void Print(std::ostream &os) const
Definition: socket.cc:837
virtual void Deserialize(TagBuffer i)
Definition: socket.cc:711
indicates whether packets should be sent out with the DF (Don't Fragment) flag set.
Definition: socket.h:1208
virtual void Serialize(TagBuffer i) const
Definition: socket.cc:648
void SetIpRecvTtl(bool ipv4RecvTtl)
Tells a socket to pass information about IP_TTL up the stack.
Definition: socket.cc:532
void Enable(void)
Enables the DF (Don't Fragment) flag.
Definition: socket.cc:726
uint8_t m_ipv6Tclass
the Tclass carried by the tag
Definition: socket.h:1391
virtual void Deserialize(TagBuffer i)
Definition: socket.cc:654
virtual int SendTo(Ptr< Packet > p, uint32_t flags, const Address &toAddress)=0
Send data to a specified peer.
virtual void Deserialize(TagBuffer i)
Definition: socket.cc:832
virtual void Print(std::ostream &os) const
Definition: socket.cc:716
Ipv6MulticastFilterMode
Enumeration of the possible filter of a socket.
Definition: socket.h:138
virtual int GetPeerName(Address &address) const =0
Get the peer address of a connected socket.
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition: socket.cc:871
void SetConnectCallback(Callback< void, Ptr< Socket > > connectionSucceeded, Callback< void, Ptr< Socket > > connectionFailed)
Specify callbacks to allow the caller to determine if the connection succeeds of fails.
Definition: socket.cc:84
A base class which provides memory management and object aggregation.
Definition: object.h:87
tuple address
Definition: first.py:37
virtual Ptr< Packet > RecvFrom(uint32_t maxSize, uint32_t flags, Address &fromAddress)=0
Read a single packet from the socket and retrieve the sender address.
uint8_t GetTtl(void) const
Get the tag's TTL.
Definition: socket.cc:617
Callback< void, Ptr< Socket >, uint32_t > m_sendCb
packet sent callback
Definition: socket.h:1085
virtual int Send(Ptr< Packet > p, uint32_t flags)=0
Send data (or dummy data) to the remote host.
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition: socket.cc:756
virtual void SetIpv6HopLimit(uint8_t ipHopLimit)
Manually set IPv6 Hop Limit.
Definition: socket.cc:544
virtual int Close(void)=0
Close a socket.
void SetPriority(uint8_t priority)
Set the tag's priority.
Definition: socket.cc:848
virtual uint32_t GetTxAvailable(void) const =0
Returns the number of bytes which can be sent in a single call to Send.
virtual uint32_t GetSerializedSize(void) const
Definition: socket.cc:820
virtual void Serialize(TagBuffer i) const
Definition: socket.cc:883
uint8_t GetPriority(void) const
Query the priority value of this socket.
Definition: socket.cc:402
indicates whether the socket has IP_TOS set.
Definition: socket.h:1258
void SetIpTos(uint8_t ipTos)
Manually set IP Type of Service field.
Definition: socket.cc:443
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Definition: socket.cc:695
a unique identifier for an interface.
Definition: type-id.h:58
void NotifySend(uint32_t spaceAvailable)
Notify through the callback (if set) that some data have been sent.
Definition: socket.cc:295
bool m_manualIpTtl
socket has IPv4 TTL set
Definition: socket.h:1091
void NotifyErrorClose(void)
Notify through the callback (if set) that the connection has been closed due to an error...
Definition: socket.cc:247
virtual void SetIpTtl(uint8_t ipTtl)
Manually set IP Time to Live field.
Definition: socket.cc:519
bool m_ipv6RecvHopLimit
socket forwards IPv6 Hop Limit tag to L4
Definition: socket.h:1102
virtual uint32_t GetRxAvailable(void) const =0
Return number of bytes which can be returned from one or multiple calls to Recv.
bool m_manualIpv6Tclass
socket has IPv6 Tclass set
Definition: socket.h:1099
bool m_ipv6RecvTclass
socket forwards IPv6 Tclass tag to L4
Definition: socket.h:1101