A Discrete-Event Network Simulator
API
ns3tcp-socket-writer.h
Go to the documentation of this file.
1/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2010 University of Washington
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19#include "ns3/application.h"
20#include "ns3/node.h"
21#include "ns3/ptr.h"
22#include "ns3/socket.h"
23#include "ns3/address.h"
24
25namespace ns3
26{
27
34{
35public:
36 SocketWriter ();
37 virtual ~SocketWriter ();
42 static TypeId GetTypeId (void);
43
49 void Setup (Ptr<Node> node, Address peer);
53 void Connect ();
58 void Write (uint32_t numBytes);
62 void Close ();
63
64private:
65 virtual void StartApplication (void);
66 virtual void StopApplication (void);
70 bool m_isSetup;
72};
73}
a polymophic address class
Definition: address.h:91
The base class for all ns3 applications.
Definition: application.h:61
Simple class to write data to sockets.
Address m_peer
Peer's address.
virtual void StopApplication(void)
Application specific shutdown code.
void Connect()
Connect the socket.
void Setup(Ptr< Node > node, Address peer)
Setup the socket.
virtual void StartApplication(void)
Application specific startup code.
static TypeId GetTypeId(void)
Register this type.
void Write(uint32_t numBytes)
Write to the socket.
Ptr< Node > m_node
Node pointer.
void Close()
Close the socket.
bool m_isSetup
True if the socket is connected.
Ptr< Socket > m_socket
Socket.
bool m_isConnected
True if the socket setup has been done.
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.