Browse Source

Add TCP lecture slides.

master
Ben Kurtovic 6 years ago
parent
commit
7e749f60d6
3 changed files with 30 additions and 2 deletions
  1. +2
    -2
      _posts/2016-04-25-stack-smashing.md
  2. +28
    -0
      _posts/2017-04-11-tcp.md
  3. BIN
     

+ 2
- 2
_posts/2016-04-25-stack-smashing.md View File

@@ -1,7 +1,7 @@
---
layout: post
title: Stack Smashing
tags: Security
title: Lecture: Stack Smashing
tags: Lecture
description: Slides from a lecture on low-level software exploits and defenses
---



+ 28
- 0
_posts/2017-04-11-tcp.md View File

@@ -0,0 +1,28 @@
---
layout: post
title: Lecture: Networking and TCP
tags: Lecture
description: Slides from a lecture on various networking topics, including how TCP actually works
---

In the same vein as my [previous post](/2016/04/25/stack-smashing.html), I'd
like to share another lecture I wrote for the honors section of the
[systems programming course](https://cs.illinois.edu/courses/profile/CS241)
I am a TA for. It is essentially a taste of some deeper networking concepts
than we get to cover in the regular section. This includes a fairly substantial
discussion of how TCP works beneath the scenes, a topic I continue to be
fascinated by.

One of the benefits of writing a lecture is that it forces you to work through
your own conceptual understanding of a topic and patch holes that you won't
necessarily realize exist in the first place. I can definitely say this applied
here. I especially enjoy when students ask clarifying questions about some of
the finer details (for this lecture, I had one about specifics of reliable
transmission) as we can see what limitations the material has and where it can
be improved.

[You can also view the slides directly](/static/content/tcp.pdf).

<object data="/static/content/tcp.pdf#zoom=150" type="application/pdf" width="100%" height="600px">
<p><a href="/static/content/tcp.pdf">View PDF</a></p>
</object>

BIN
View File


Loading…
Cancel
Save