This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
00 ff ff ff ff ff ff 00 61 a9 16 b0 00 00 00 00 | |
1c 22 01 03 80 35 1e 78 af 28 df a6 55 4f 9b 26 | |
0e 4e 4d a5 cb 00 81 80 95 00 a9 c0 b3 00 d1 c0 | |
01 01 01 01 01 01 02 3a 80 18 71 38 2d 40 58 2c | |
45 00 0f 28 21 00 00 1e 00 00 00 fc 00 50 32 34 | |
46 42 41 2d 52 41 47 4c 0a 20 00 00 00 ff 00 30 | |
30 30 30 30 30 30 30 30 30 30 30 30 00 00 00 fd | |
00 30 64 61 ba 3c 00 0a 20 20 20 20 20 20 01 03 | |
02 03 32 b3 49 01 03 11 13 04 14 05 1f 90 e2 00 | |
ca 67 03 0c 00 10 00 38 44 e3 05 c3 01 e6 06 05 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
let conn = new RTCPeerConnection() | |
let ch = conn.createDataChannel("channel") | |
function appendMessage(text) { | |
let messages = document.getElementById("messages") | |
let node = document.createElement("li"); | |
let textnode = document.createTextNode(text); | |
node.appendChild(textnode); | |
messages.appendChild(node); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id "de.undercouch.download" version "4.1.1" | |
} | |
apply plugin: 'java' | |
group 'com.example.module' | |
version '1.0' | |
repositories { |