SIP: Fix incoming re-invite
[lcr.git] / join.cpp
index b3f8843..5dcbde2 100644 (file)
--- a/join.cpp
+++ b/join.cpp
@@ -27,8 +27,7 @@ class Join *find_join_id(unsigned int join_id)
 {
        class Join *join = join_first;
 
-       while(join)
-       {
+       while(join) {
 //printf("comparing: '%s' with '%s'\n", name, join->j_name);
                if (join->j_serial == join_id)
                        return(join);
@@ -71,8 +70,7 @@ Join::~Join()
 
        cl = join_first;
        clp = &join_first;
-       while(cl)
-       {
+       while(cl) {
                if (cl == this)
                        break;
                clp = &cl->next;
@@ -93,28 +91,16 @@ void Join::message_epoint(unsigned int epoint_id, int message_type, union parame
 }
 
 
-/* join process is called from the main loop
- * it processes the current calling state.
- * returns 0 if nothing was done
- */
-int Join::handler(void)
-{
-       return(0);
-}
-
 /* free all join structures */
 void join_free(void)
 {
 
-       if (!join_first)
-       {
+       if (!join_first) {
                PDEBUG(DEBUG_JOIN, "no more pending join(s), done!\n");
                return;
        }
-       while(join_first)
-       {
-               if (options.deb & DEBUG_JOIN)
-               {
+       while(join_first) {
+               if (options.deb & DEBUG_JOIN) {
                        PDEBUG(DEBUG_JOIN, "freeing pending join\n");
                }