Fix encode/decode for []bool
[govpp.git] / adapter / doc.go
1 // Package adapter provides an interface between govpp core and the VPP. It is responsible for sending
2 // and receiving binary-encoded data to/from VPP via shared memory.
3 //
4 // The default adapter being used for connection with real VPP is called vppapiclient. It is based on the
5 // communication with the vppapiclient VPP library written in C via CGO.
6 //
7 // Apart from the vppapiclient adapter, mock adapter is provided for unit/integration testing where the actual
8 // communication with VPP is not demanded.
9 package adapter