summaryrefslogtreecommitdiffstats
path: root/admin_server.h
diff options
context:
space:
mode:
authorSuper User2007-07-27 20:07:22 +0200
committerSuper User2007-07-27 20:07:22 +0200
commitb5427b9c694cc2c0c1e5361d4cba721c87ad1cac (patch)
tree6def426175d28de5a5020be7b7f01e6835be8a3a /admin_server.h
parentunified socket application interface (for asterisk and maybe other apps) (diff)
downloadlcr-b5427b9c694cc2c0c1e5361d4cba721c87ad1cac.tar.gz
lcr-b5427b9c694cc2c0c1e5361d4cba721c87ad1cac.tar.xz
lcr-b5427b9c694cc2c0c1e5361d4cba721c87ad1cac.zip
fixes, changes, backup
Diffstat (limited to 'admin_server.h')
-rw-r--r--admin_server.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/admin_server.h b/admin_server.h
index 2351298..9d1c8a2 100644
--- a/admin_server.h
+++ b/admin_server.h
@@ -22,7 +22,7 @@ struct admin_list {
struct admin_list *next;
int sock;
int sockserial;
- char remote[32]; /* socket is connected remote application */
+ char remote_name[32]; /* socket is connected remote application */
struct admin_trace_req trace; /* stores trace, if detail != 0 */
unsigned long epointid;
struct admin_queue *response;
@@ -33,8 +33,8 @@ int admin_init(void);
void admin_cleanup(void);
int admin_handle(void);
void admin_call_response(int adminid, int message, char *connected, int cause, int location, int notify);
-int admin_message_to_join(struct admin_message *msg);
-int admin_message_from_join(char *remote, unsigned long ref, int message_type, union parameter *param);
+int admin_message_to_join(struct admin_message *msg, int remote_id);
+int admin_message_from_join(int remote_id, unsigned long ref, int message_type, union parameter *param);