-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwscript.patch
More file actions
59 lines (57 loc) · 2.2 KB
/
Copy pathwscript.patch
File metadata and controls
59 lines (57 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
diff --git a/src/applications/wscript b/src/applications/wscript
index 2ae4cf78..68de4278 100644
--- a/src/applications/wscript
+++ b/src/applications/wscript
@@ -4,6 +4,7 @@ def build(bld):
module = bld.create_ns3_module('applications', ['internet', 'config-store','stats'])
module.source = [
'model/bulk-send-application.cc',
+ 'model/mpquic-bulk-send-application.cc',
'model/onoff-application.cc',
'model/packet-sink.cc',
'model/udp-client.cc',
@@ -21,11 +22,18 @@ def build(bld):
'model/three-gpp-http-header.cc',
'model/three-gpp-http-variables.cc',
'helper/bulk-send-helper.cc',
+ 'helper/mpquic-bulk-send-helper.cc',
'helper/on-off-helper.cc',
'helper/packet-sink-helper.cc',
'helper/udp-client-server-helper.cc',
'helper/udp-echo-helper.cc',
'helper/three-gpp-http-helper.cc',
+ 'model/quic-echo-client.cc',
+ 'model/quic-echo-server.cc',
+ 'model/quic-client.cc',
+ 'model/quic-server.cc',
+ 'helper/quic-echo-helper.cc',
+ 'helper/quic-client-server-helper.cc'
]
applications_test = bld.create_ns3_module_test_library('applications')
@@ -45,6 +53,7 @@ def build(bld):
headers.module = 'applications'
headers.source = [
'model/bulk-send-application.h',
+ 'model/mpquic-bulk-send-application.h',
'model/onoff-application.h',
'model/packet-sink.h',
'model/udp-client.h',
@@ -62,11 +71,18 @@ def build(bld):
'model/three-gpp-http-header.h',
'model/three-gpp-http-variables.h',
'helper/bulk-send-helper.h',
+ 'helper/mpquic-bulk-send-helper.h',
'helper/on-off-helper.h',
'helper/packet-sink-helper.h',
'helper/udp-client-server-helper.h',
'helper/udp-echo-helper.h',
- 'helper/three-gpp-http-helper.h'
+ 'helper/three-gpp-http-helper.h',
+ 'model/quic-echo-client.h',
+ 'model/quic-echo-server.h',
+ 'model/quic-client.h',
+ 'model/quic-server.h',
+ 'helper/quic-echo-helper.h',
+ 'helper/quic-client-server-helper.h'
]
if (bld.env['ENABLE_EXAMPLES']):