[GPRS] LLC: Increment V(U) and N(U)
diff --git a/openbsc/src/gprs/gprs_llc.c b/openbsc/src/gprs/gprs_llc.c
index 293c657..68d7d76 100644
--- a/openbsc/src/gprs/gprs_llc.c
+++ b/openbsc/src/gprs/gprs_llc.c
@@ -230,6 +230,10 @@
 	lle->bvci = msgb_bvci(msg);
 	lle->nsei = msgb_nsei(msg);
 
+	/* Increment V(U) */
+	nu = lle->vu_send;
+	lle->vu_send = (lle->vu_send + 1) % 512;
+
 	/* Address Field */
 	addr = sapi & 0xf;
 	if (command)