Make Architecture markdown smaller

Sean DuBois 2021-01-28 20:17:54 -08:00
parent 8c4c9ebaf6
commit 45c58bef9f

@ -9,16 +9,14 @@ of the code base.
## Exploring the PeerConnection
At a highlevel the components that make up a PeerConnection look like this. At the far left you have public APIs and how data flows to/from them.
```
<---> pion/srtp ---> OnTrack
| ^
| | --------- AddTrack
pion/ice <----> pion/webrtc <--> github.com/pion/webrtc/internal/mux
|
<---> pion/dtls <--> pion/sctp -> OnDataChannel
^
|---- CreateDataChannel
<---> pion/srtp ---> OnTrack
| ^
| | --------- AddTrack
pion/ice <----> pion/webrtc(internal/mux)
|
<---> pion/dtls <--> pion/sctp -> OnDataChannel
^
|---- CreateDataChannel
```
### Receiving Data