summaryrefslogtreecommitdiff
path: root/doc/src/examples/my_parse.c
blob: c1ff6370bed62f23d1331a830361a3f0f091b76e (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <netlink/msg.h>

void my_parse(void *stream, int length)
{
	struct nlmsghdr *hdr = stream;

	while (nlmsg_ok(hdr, length)) {
		// Parse message here
		hdr = nlmsg_next(hdr, &length);
	}
}