summaryrefslogtreecommitdiffstats
path: root/adapter/doc.go
diff options
context:
space:
mode:
Diffstat (limited to 'adapter/doc.go')
-rw-r--r--adapter/doc.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/adapter/doc.go b/adapter/doc.go
new file mode 100644
index 0000000..5b0ac8a
--- /dev/null
+++ b/adapter/doc.go
@@ -0,0 +1,9 @@
+// Package adapter provides an interface between govpp core and the VPP. It is responsible for sending
+// and receiving binary-encoded data to/from VPP via shared memory.
+//
+// The default adapter being used for connection with real VPP is called vppapiclient. It is based on the
+// communication with the vppapiclient VPP library written in C via CGO.
+//
+// Apart from the vppapiclient adapter, mock adapter is provided for unit/integration testing where the actual
+// communication with VPP is not demanded.
+package adapter