X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=joinremote.cpp;h=c02de8e4a70c406505ee281647c0f40d4f49f346;hp=a4f9380edb97805ae7af408e1a32eec79e1614ec;hb=9f505bd729375423e885dcbe4db30df65541f7a7;hpb=e9bfe48fc5254e79e59c6ffc1698912175edf4e3 diff --git a/joinremote.cpp b/joinremote.cpp index a4f9380..c02de8e 100644 --- a/joinremote.cpp +++ b/joinremote.cpp @@ -14,6 +14,7 @@ //#define __u16 unsigned short //#define __u32 unsigned int +extern unsigned int new_remote; /* * constructor for a new join @@ -27,6 +28,7 @@ JoinRemote::JoinRemote(unsigned int serial, char *remote_name, int remote_id) : SCPY(j_remote_name, remote_name); j_remote_id = remote_id; j_type = JOIN_TYPE_REMOTE; + j_remote_ref = new_remote++; j_epoint_id = serial; /* this is the endpoint, if created by epoint */ if (j_epoint_id) @@ -35,9 +37,8 @@ JoinRemote::JoinRemote(unsigned int serial, char *remote_name, int remote_id) : /* send new ref to remote socket */ memset(¶m, 0, sizeof(union parameter)); if (serial) - param.direction = 1; /* new ref from lcr */ - /* the j_serial is assigned by Join() parent. this is sent as new ref */ - if (admin_message_from_join(j_remote_id, j_serial, MESSAGE_NEWREF, ¶m)<0) + param.newref.direction = 1; /* new ref from lcr */ + if (admin_message_from_lcr(j_remote_id, j_remote_ref, MESSAGE_NEWREF, ¶m)<0) FATAL("No socket with remote application '%s' found, this shall not happen. because we already created one.\n", j_remote_name); } @@ -49,17 +50,6 @@ JoinRemote::~JoinRemote() { } - -/* join process is called from the main loop - * it processes the current calling state. - * returns 0 if join nothing was done - */ -int JoinRemote::handler(void) -{ - return(0); -} - - void JoinRemote::message_epoint(unsigned int epoint_id, int message_type, union parameter *param) { /* if endpoint has just been removed, but still a message in the que */ @@ -67,7 +57,7 @@ void JoinRemote::message_epoint(unsigned int epoint_id, int message_type, union return; /* look for Remote's interface */ - if (admin_message_from_join(j_remote_id, j_serial, message_type, param)<0) { + if (admin_message_from_lcr(j_remote_id, j_remote_ref, message_type, param)<0) { PERROR("No socket with remote application '%s' found, this shall not happen. Closing socket shall cause release of all joins.\n", j_remote_name); return; } @@ -111,25 +101,5 @@ void JoinRemote::message_remote(int message_type, union parameter *param) } } -void message_bchannel_to_remote(unsigned int remote_id, unsigned int ref, int type, unsigned int handle, int tx_gain, int rx_gain, char *pipeline, unsigned char *crypt, int crypt_len, int crypt_type) -{ - union parameter param; - - memset(¶m, 0, sizeof(union parameter)); - param.bchannel.type = type; - param.bchannel.handle = handle; - param.bchannel.tx_gain = tx_gain; - param.bchannel.rx_gain = rx_gain; - if (pipeline) - SCPY(param.bchannel.pipeline, pipeline); - if (crypt_len) - memcpy(param.bchannel.crypt, crypt, crypt_len); - param.bchannel.crypt_type = crypt_type; - if (admin_message_from_join(remote_id, ref, MESSAGE_BCHANNEL, ¶m)<0) { - PERROR("No socket with remote id %d found, this happens, if the socket is closed before all bchannels are imported.\n", remote_id); - return; - } -} -