< Previous by Date Date Index Next by Date >
  Thread Index  

[reSIProcate] Keep Alive Manager


Hi,

How to stop the keepalive manager? I want to start the keepalives when the
user REGISTERs and stop them when the user unREGISTERs.

I tried:

      m_pMasterProfile->unsetKeepAliveTime();

but it only seems to reset the time to a default value.

Thanks!

CG



                                                                           
                                                                           
                                                                           
             resiprocate-devel                                          To 
             -request@xxxxxxxx         resiprocate-devel@xxxxxxxxxxxxxxxxx 
             foundry.org               rg                                  
                                                                        cc 
             Sent by:                                                      
             resiprocate-devel                                     Subject 
             -bounces@xxxxxxxx         resiprocate-devel Digest, Vol 16,   
             foundry.org               Issue 49                            
                                                                           
                                                                           
             08/28/2005 12:00                                              
             PM                                                            
                                                                           
                                                                           
             Please respond to                                             
             resiprocate-devel                                             
             @list.sipfoundry.                                             
                    org                                                    
                                                                           
                                                                           




Send resiprocate-devel mailing list submissions to
             resiprocate-devel@xxxxxxxxxxxxxxxxxxx

To subscribe or unsubscribe via the World Wide Web, visit
             https://list.sipfoundry.org/mailman/listinfo/resiprocate-devel
or, via email, send a message with subject or body 'help' to
             resiprocate-devel-request@xxxxxxxxxxxxxxxxxxx

You can reach the person managing the list at
             resiprocate-devel-owner@xxxxxxxxxxxxxxxxxxx

When replying, please edit your Subject line so it is more specific
than "Re: Contents of resiprocate-devel digest..."
Today's Topics:

   1. Data: disambiguate old preallocate and doube           constructors
      (david Butcher)

----- Message from david Butcher <davidlbutcher@xxxxxxxxx> on Sun, 28 Aug
2005 10:20:45 -0700 -----
                                                                           
      To: resiprocate <resiprocate-devel@xxxxxxxxxxxxxxxxxxx>              
                                                                           
 Subject: [reSIProcate] Data: disambiguate old preallocate and doube       
          constructors                                                     
                                                                           

<code>
Data pre(100, true);
</code>
will no longer compile.

Instead use:
<code>
Data pre(100, Data::Preallocate);
</code>

<code>
double d = 0.567;
Data dd(d, 3);
</code>
will no longer compile.

Instead use:
<code>
Data d(d, Data::ThreeDigitPrecision);
</code>

david

_______________________________________________
resiprocate-devel mailing list
resiprocate-devel@xxxxxxxxxxxxxxxxxxx
https://list.sipfoundry.org/mailman/listinfo/resiprocate-devel