|
|
| 125 |
* |
125 |
* |
| 126 |
* \param ip The IP address of the remote UDP server |
126 |
* \param ip The IP address of the remote UDP server |
| 127 |
* \param port The port number of the remote UDP server |
127 |
* \param port The port number of the remote UDP server |
|
|
128 |
* \deprecated This constructor is deprecated and will be removed |
| 129 |
* in a future release because, if the provided address is of |
| 130 |
* type InetSocketAddress or Inet6SocketAddress, the port argument |
| 131 |
* is not needed since it can be specified within the address. |
| 128 |
*/ |
132 |
*/ |
| 129 |
|
133 |
|
| 130 |
UdpClientHelper (Address ip, uint16_t port); |
134 |
UdpClientHelper (Address ip, uint16_t port) NS_DEPRECATED; |
|
|
135 |
/** |
| 136 |
* Create UdpClientHelper which will make life easier for people trying |
| 137 |
* to set up simulations with udp-client-server. |
| 138 |
* |
| 139 |
* \param addr The address of the remote UDP server |
| 140 |
*/ |
| 141 |
|
| 142 |
UdpClientHelper (Address addr); |
| 131 |
|
143 |
|
| 132 |
/** |
144 |
/** |
| 133 |
* Record an attribute to be set in each Application after it is is created. |
145 |
* Record an attribute to be set in each Application after it is is created. |
|
|
| 178 |
* \param ip The IP address of the remote UDP server |
190 |
* \param ip The IP address of the remote UDP server |
| 179 |
* \param port The port number of the remote UDP server |
191 |
* \param port The port number of the remote UDP server |
| 180 |
* \param filename the file from which packet traces will be loaded |
192 |
* \param filename the file from which packet traces will be loaded |
|
|
193 |
* \deprecated This constructor is deprecated and will be removed |
| 194 |
* in a future release because, if the provided address is of |
| 195 |
* type InetSocketAddress or Inet6SocketAddress, the port argument |
| 196 |
* is not needed since it can be specified within the address. |
| 197 |
*/ |
| 198 |
UdpTraceClientHelper (Address ip, uint16_t port, std::string filename) NS_DEPRECATED; |
| 199 |
/** |
| 200 |
* Create UdpTraceClientHelper which will make life easier for people trying |
| 201 |
* to set up simulations with udp-client-server. |
| 202 |
* |
| 203 |
* \param addr The address of the remote UDP server |
| 204 |
* \param filename the file from which packet traces will be loaded |
| 181 |
*/ |
205 |
*/ |
| 182 |
UdpTraceClientHelper (Address ip, uint16_t port, std::string filename); |
206 |
UdpTraceClientHelper (Address addr, std::string filename); |
| 183 |
/** |
207 |
/** |
| 184 |
* Create UdpTraceClientHelper which will make life easier for people trying |
208 |
* Create UdpTraceClientHelper which will make life easier for people trying |
| 185 |
* to set up simulations with udp-client-server. |
209 |
* to set up simulations with udp-client-server. |