alpha phase is open, this means:
[lcr.git] / trace.h
diff --git a/trace.h b/trace.h
index 816f660..b7a4720 100644 (file)
--- a/trace.h
+++ b/trace.h
@@ -10,8 +10,8 @@
 \*****************************************************************************/ 
 
 struct trace_element {
-       char name[10];
-       char sub[10];
+       char name[11];
+       char sub[11];
        char value[64];
 };
 
@@ -26,8 +26,8 @@ struct trace {
        unsigned long sec, usec;
        
        /* type */
-       char category[4];
-       int serial;
+       int category;
+       unsigned long serial;
        char name[64];
 
        /* elements */
@@ -39,6 +39,7 @@ struct trace {
 
 #define        CATEGORY_CH     0x01
 #define        CATEGORY_EP     0x02
+//#define CATEGORY_BC  0x04 check lcradmin help
 
 
 void start_trace(int port, struct interface *interface, char *caller, char *dialing, int direction, int category, int serial, char *name);