added exporting/importing bchannel stacks to the remote application
[lcr.git] / joinremote.h
index d9e7e2b..f80d0d9 100644 (file)
 class JoinRemote : public Join
 {
        public:
-       JoinRemote(unsigned long serial, char *remote);
+       JoinRemote(unsigned long serial, char *remote_name, int remote_id);
        ~JoinRemote();
        void message_epoint(unsigned long epoint_id, int message, union parameter *param);
-       void message_remote(unsigned long ref, int message_type, union parameter *param);
+       void message_remote(int message_type, union parameter *param);
        int handler(void);
 
-       char j_remote[32];
+       int j_remote_id;
+       char j_remote_name[32];
        unsigned long j_epoint_id;
 }; 
 
 
+void message_bchannel_to_join(int serial, int type, unsigned long addr);