summaryrefslogtreecommitdiffstats
path: root/admin.h
diff options
context:
space:
mode:
authorSuper User2007-07-15 12:01:27 +0200
committerSuper User2007-07-15 12:01:27 +0200
commitef3fc1931a2fa82f482d21fb1296735206463d3a (patch)
treec50af579c2acef5b89dba78b4e6b9d4c4701ecc5 /admin.h
parentbackup (diff)
downloadlcr-ef3fc1931a2fa82f482d21fb1296735206463d3a.tar.gz
lcr-ef3fc1931a2fa82f482d21fb1296735206463d3a.tar.xz
lcr-ef3fc1931a2fa82f482d21fb1296735206463d3a.zip
backup
Diffstat (limited to 'admin.h')
-rw-r--r--admin.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/admin.h b/admin.h
index f5ca7d4..d3596ea 100644
--- a/admin.h
+++ b/admin.h
@@ -72,7 +72,7 @@ struct admin_response_interface {
int l1link; /* down(0) or up(1) */
int l2link; /* down(0) or up(1) */
int channels;
- int busy[256]; /* if port is idle(0) busy(1) */
+ char busy[256]; /* if port is idle(0) busy(1) */
unsigned long port[256]; /* current port */
};
@@ -138,11 +138,11 @@ struct admin_trace_rsp {
char text[1024];
};
-//struct admin_msg {
-// int type; /* type of message */
-// unsigned long ref; /* reference to individual endpoints */
-// union parameter param; /* parameter union */
-//};
+struct admin_msg {
+ int type; /* type of message */
+ unsigned long ref; /* reference to individual endpoints */
+ union parameter param; /* parameter union */
+};
struct admin_message {
int message; /* type of admin message */
@@ -154,7 +154,7 @@ struct admin_message {
struct admin_response_epoint e;
struct admin_response_call c;
struct admin_call call;
-// struct admin_msg msg;
+ struct admin_msg msg;
struct admin_trace_req trace_req;
struct admin_trace_rsp trace_rsp;
} u;