[svn-commits] mattf: trunk r25 - in /trunk: README libss7.h

svn-commits at lists.digium.com svn-commits at lists.digium.com
Tue Aug 22 13:25:25 MST 2006


Author: mattf
Date: Tue Aug 22 15:25:25 2006
New Revision: 25

URL: http://svn.digium.com/view/libss7?rev=25&view=rev
Log:
Add group block/unblock support.

Modified:
    trunk/README
    trunk/libss7.h

Modified: trunk/README
URL: http://svn.digium.com/view/libss7/trunk/README?rev=25&r1=24&r2=25&view=diff
==============================================================================
--- trunk/README (original)
+++ trunk/README Tue Aug 22 15:25:25 2006
@@ -34,11 +34,11 @@
 
 long term:
 ANSI-style signalling support
-Continuity check messages
+Continuity check messages - Completed
 SCCP support
 
 For more information, please use the Asterisk-ss7 or Asterisk-dev mailing
-lists (I monitor those regularly) or email me personally.
+lists (I monitor them regularly) or email me directly.
 
 Matthew Fredrickson
 creslin at digium.com

Modified: trunk/libss7.h
URL: http://svn.digium.com/view/libss7/trunk/libss7.h?rev=25&r1=24&r2=25&view=diff
==============================================================================
--- trunk/libss7.h (original)
+++ trunk/libss7.h Tue Aug 22 15:25:25 2006
@@ -21,6 +21,10 @@
 #define ISUP_EVENT_UBL		16
 #define ISUP_EVENT_BLA		17
 #define ISUP_EVENT_UBA		18
+#define ISUP_EVENT_CGB		19
+#define ISUP_EVENT_CGU		20
+#define ISUP_EVENT_CGBA		19
+#define ISUP_EVENT_CGUA		20
 
 /* Different SS7 types */
 #define SS7_ITU		(1 << 0)
@@ -83,13 +87,7 @@
 	int e;
 	int startcic;
 	int endcic;
-} ss7_event_grs;
-
-typedef struct {
-	int e;
-	int startcic;
-	int endcic;
-} ss7_event_gra;
+} ss7_event_cicrange;
 
 typedef struct {
 	int e;
@@ -107,8 +105,8 @@
 	int e;
 	ss7_event_generic gen;
 	ss7_event_iam iam;
-	ss7_event_grs grs;
-	ss7_event_gra gra;
+	ss7_event_cicrange grs;
+	ss7_event_cicrange gra;
 	ss7_event_rel rel;
 	ss7_event_ciconly rlc;
 	ss7_event_anm anm;



More information about the svn-commits mailing list