partysip-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Partysip-dev] SUBSCRIBE fails. Code Problem


From: Vishal Jain
Subject: [Partysip-dev] SUBSCRIBE fails. Code Problem
Date: Tue, 28 May 2002 15:05:01 -0400 (EDT)

Hello Aymeric,

There is a problem in code that I found when SUBSCRIBE requests does not
work. I found this while gdbing the code. Check src/psp_core2.c:186.

It is 
int psp_core_add_imp_subscribe_hook(imp_func_t *fn, int hookflg)
{
  return psp_core_add_imp_hook(core->imp->func_notifys, fn, hookflg);
                                          ^^^^^^^^^^^^
}

It should be
int psp_core_add_imp_subscribe_hook(imp_func_t *fn, int hookflg)
{
  return psp_core_add_imp_hook(core->imp->func_subscribes, fn, hookflg);
                                          ^^^^^^^^^^^^^^^
}

Still SUBSCRIBE is not working properly, and I am looking into it!

-- 
Regards,
Vishal Jain
ILX Systems
New York, NY




reply via email to

[Prev in Thread] Current Thread [Next in Thread]