Chapter links

This commit is contained in:
Emil Hernvall 2018-03-19 11:33:11 +01:00
parent 6c5f42cb4b
commit 39ccac90a7
4 changed files with 8 additions and 0 deletions

View File

@ -843,3 +843,4 @@ A {
} }
``` ```
In the next chapter, we'll add network connectivity: [Chapter 2 - Building a stub resolver](/chapter2.md)

View File

@ -301,3 +301,5 @@ A {
ttl: 79 ttl: 79
} }
``` ```
The next chapter covers implementing a richer set of record types: [Chapter 3 - Adding more Record Types](/chapter3.md)

View File

@ -456,3 +456,5 @@ MX {
ttl: 1794 ttl: 1794
} }
``` ```
Next up: [Chapter 4 - Baby's first DNS server](/chapter4.md)

View File

@ -326,3 +326,6 @@ Answer: A { domain: "google.com", addr: 216.58.211.142, ttl: 96 }
Success! In less than 800 lines of code, we've built a DNS server able to respond to Success! In less than 800 lines of code, we've built a DNS server able to respond to
queries with several different record types! queries with several different record types!
In the next chapter, we'll get rid of our dependence on an existing resolver:
[Chapter 5 - Recursive Resolve](/chapter5.md)