author | Brian Swenson <bswenson3@gatech.edu> |
Tue, 22 Apr 2014 11:52:55 -0400 | |
changeset 10694 | 4af272d94cfd |
parent 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: |
|
10405
45c8fceae24e
Doxygen fixes to Topology-read, Ipv6, and tcp-socket
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
6834
diff
changeset
|
49 |
/** |
45c8fceae24e
Doxygen fixes to Topology-read, Ipv6, and tcp-socket
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
6834
diff
changeset
|
50 |
* Get the type ID. |
45c8fceae24e
Doxygen fixes to Topology-read, Ipv6, and tcp-socket
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
6834
diff
changeset
|
51 |
* \brief Get the type ID. |
45c8fceae24e
Doxygen fixes to Topology-read, Ipv6, and tcp-socket
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
6834
diff
changeset
|
52 |
* \return the object TypeId |
45c8fceae24e
Doxygen fixes to Topology-read, Ipv6, and tcp-socket
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents:
6834
diff
changeset
|
53 |
*/ |
3132 | 54 |
static TypeId GetTypeId (void); |
55 |
||
56 |
}; |
|
57 |
||
58 |
} // namespace ns3 |
|
59 |
||
60 |
#endif /* TCP_SOCKET_FACTORY_H */ |