Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit f899603

Browse files
authored
Revert "Add an agent for WebTransport Support. (#113)" (#720)
This reverts commit b0f500a.
1 parent b0f500a commit f899603

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+235
-9281
lines changed

doc/servermd/WebTransportGuide.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

scripts/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,4 +170,4 @@ Promise.all(works)
170170
let checkOutput = execSync(`node ${moduleTestScript} ${runtimeAddonDir}`).toString();
171171
console.log(checkOutput);
172172
}
173-
});
173+
});

scripts/build.json

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,6 @@
4949
"webrtc-frame"
5050
]
5151
},
52-
"mcu-quic": {
53-
"include":[
54-
"mcu",
55-
"quic"
56-
]
57-
},
5852
"video-mixer-sw" : {
5953
"path" : "source/agent/video/videoMixer/videoMixer_sw",
6054
"gyp" : "binding.sw.gyp"
@@ -117,9 +111,5 @@
117111
},
118112
"resource-util" : {
119113
"path" : "source/agent/addons/resourceUtil"
120-
},
121-
"quic" : {
122-
"path" : "source/agent/addons/quic",
123-
"description": "QUIC agent supports WebTransport - QuicTransport connections. Experimental feature."
124114
}
125115
}

scripts/pack.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ const originCwd = cwd();
4040
const osScript = path.join(rootDir, 'scripts/detectOS.sh');
4141
const osType = execSync(`bash ${osScript}`).toString().toLowerCase();
4242

43-
const experimentalTargets = ['quic-agent'];
44-
4543
var allTargets = [];
4644

4745
if (options.full) {
@@ -133,8 +131,7 @@ function getPackList(targets) {
133131
}
134132

135133
var packList = targets.filter((element) => {
136-
// Don't include QUIC agent by default until CI is added for QUIC SDK.
137-
if (options.target.includes('all') && !experimentalTargets.includes(element.rules.name)) return true;
134+
if (options.target.includes('all')) return true;
138135
return options.target.includes(element.rules.name);
139136
});
140137
if (packList.length === 0) {
@@ -601,9 +598,6 @@ function packScripts() {
601598
}
602599
scriptItems.push('app');
603600
scriptItems.forEach((m) => {
604-
if (experimentalTargets.includes(m)) {
605-
return;
606-
}
607601
startCommands += '${bin}/daemon.sh start ' + m + ' $1\n';
608602
stopCommands += '${bin}/daemon.sh stop ' + m + '\n';
609603
});

scripts/release/daemon-bin.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,6 @@ case $startStop in
169169
> "${stdout}" 2>&1 </dev/null &
170170
echo $! > ${pid}
171171
;;
172-
quic-agent )
173-
cd ${OWT_HOME}/quic_agent
174-
export LD_LIBRARY_PATH=./lib:${LD_LIBRARY_PATH}
175-
nohup nice -n ${OWT_NICENESS} ./OWT-MCU-Agent . -U quic\
176-
> "${stdout}" 2>&1 </dev/null &
177-
echo $! > ${pid}
178-
;;
179172
management-console )
180173
cd ${OWT_HOME}/management_console
181174
nohup nice -n ${OWT_NICENESS} node . \

scripts/release/daemon-mcu.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,6 @@ case $startStop in
169169
> "${stdout}" 2>&1 </dev/null &
170170
echo $! > ${pid}
171171
;;
172-
quic-agent )
173-
cd ${OWT_HOME}/quic_agent
174-
export LD_LIBRARY_PATH=./lib:${LD_LIBRARY_PATH}
175-
nohup nice -n ${OWT_NICENESS} node . -U quic\
176-
> "${stdout}" 2>&1 </dev/null &
177-
echo $! > ${pid}
178-
;;
179172
analytics-agent )
180173
cd ${OWT_HOME}/analytics_agent
181174
export LD_LIBRARY_PATH=./lib:${LD_LIBRARY_PATH}

source/agent/addons/quic/QuicFactory.cc

Lines changed: 0 additions & 29 deletions
This file was deleted.

source/agent/addons/quic/QuicFactory.h

Lines changed: 0 additions & 32 deletions
This file was deleted.

source/agent/addons/quic/QuicTransportConnection.cc

Lines changed: 0 additions & 124 deletions
This file was deleted.

source/agent/addons/quic/QuicTransportConnection.h

Lines changed: 0 additions & 64 deletions
This file was deleted.

0 commit comments

Comments
 (0)