author | Adrian S Tam <adrian.sw.tam@gmail.com> |
Wed, 07 Dec 2011 11:22:10 -0500 | |
changeset 7619 | b4dee6307aa7 |
parent 6834 | 036f9a0b9899 |
child 10405 | 45c8fceae24e |
permissions | -rw-r--r-- |
3132 | 1 |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
2 |
/* |
|
3 |
* Copyright (c) 2007 Georgia Tech Research Corporation |
|
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 |
* Author: Raj Bhattacharjea <raj.b@gatech.edu> |
|
19 |
*/ |
|
20 |
#ifndef TCP_SOCKET_FACTORY_H |
|
21 |
#define TCP_SOCKET_FACTORY_H |
|
22 |
||
6823
a27f86fb4e55
Merge node and common modules into new network module
Tom Henderson <tomh@tomh.org>
parents:
3401
diff
changeset
|
23 |
#include "ns3/socket-factory.h" |
3132 | 24 |
|
25 |
namespace ns3 { |
|
26 |
||
27 |
class Socket; |
|
28 |
||
29 |
/** |
|
3183 | 30 |
* \ingroup socket |
31 |
* |
|
3132 | 32 |
* \brief API to create TCP socket instances |
33 |
* |
|
34 |
* This abstract class defines the API for TCP sockets. |
|
35 |
* This class also holds the global default variables used to |
|
36 |
* initialize newly created sockets, such as values that are |
|
37 |
* set through the sysctl or proc interfaces in Linux. |
|
38 |
||
39 |
* All TCP socket factory implementations must provide an implementation |
|
40 |
* of CreateSocket |
|
41 |
* below, and should make use of the default values configured below. |
|
42 |
* |
|
43 |
* \see TcpSocketFactoryImpl |
|
44 |
* |
|
45 |
*/ |
|
46 |
class TcpSocketFactory : public SocketFactory |
|
47 |
{ |
|
48 |
public: |
|
49 |
static TypeId GetTypeId (void); |
|
50 |
||
51 |
}; |
|
52 |
||
53 |
} // namespace ns3 |
|
54 |
||
55 |
#endif /* TCP_SOCKET_FACTORY_H */ |