Add optional RAI Field

Routing Area Information is an optional Field described in 3GPP TS 29.060 7.7.3
it can be added with command line option rai, in the dot separated format MCC.MNC.LAC.RAC
example :  --rai 208.10.65535.255

Signed-off-by: Yann BONNAMY <yann_bonnamy@yahoo.fr>
Signed-off-by: Harald Welte <laforge@gnumonks.org>
diff --git a/gtp/gtp.c b/gtp/gtp.c
index 2516f50..111168b 100644
--- a/gtp/gtp.c
+++ b/gtp/gtp.c
@@ -1049,6 +1049,12 @@
 		sizeof(pdp->imsi), (uint8_t*) &pdp->imsi);
   }
 
+  /* Section 7.7.3 Routing Area Information */
+  if (pdp->rai_given == 1)
+    gtpie_tv0(&packet, &length, GTP_MAX, GTPIE_RAI,
+              pdp->rai.l, (uint8_t*) &pdp->rai.v);
+
+
   /* Section 7.7.11 */
   gtpie_tv1(&packet, &length, GTP_MAX, GTPIE_RECOVERY, 
 	    gsn->restart_counter);