summaryrefslogtreecommitdiffhomepage
path: root/examples/server6/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'examples/server6/README.md')
-rw-r--r--examples/server6/README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/server6/README.md b/examples/server6/README.md
new file mode 100644
index 0000000..490fa72
--- /dev/null
+++ b/examples/server6/README.md
@@ -0,0 +1,10 @@
+# DHCPv6 server
+
+A DHCPv6 server requires the user to implement a request handler. Basically the
+user has to provide the logic to answer to each packet. The library offers a few
+facilities to forge response packets, e.g. `NewAdvertiseFromSolicit`,
+`NewReplyFromDHCPv6Message` and so on. Look at the source code to see what's
+available.
+
+An example server that will print (but not reply to) the client's request is
+shown in [main.go](./main.go)