~damg/ubuntu/quantal/asterisk/LP1097687

« back to all changes in this revision

Viewing changes to channels/h323/ast_h323.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Lorenzo De Liso
  • Date: 2010-10-15 22:24:34 UTC
  • mfrom: (1.2.8 upstream) (8.3.8 sid)
  • Revision ID: james.westby@ubuntu.com-20101015222434-iy328q8in3lajzlv
Tags: 1:1.6.2.9-2ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/control:
    + Build-depend on hardening-wrapper
    + Change Maintainer
    + Removed Uploaders field.
    + Removed Debian Vcs-Svn entry and replaced with ubuntu-voip Vcs-Bzr,
      to reflect divergence in packages.
  - debian/rules: Make use of hardening-wrapper
  - debian/asterisk.init: chown /dev/dahdi
  - debian/backports/hardy: add file
  - debian/backports/asterisk.init.hardy: add file
 

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 * along with this program; if not, write to the Free Software
27
27
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28
28
 *
29
 
 * Version Info: $Id: ast_h323.cxx 201679 2009-06-18 16:44:37Z dvossel $
 
29
 * Version Info: $Id: ast_h323.cxx 265452 2010-05-24 22:07:11Z mmichelson $
30
30
 */
31
31
 
32
32
#define VERSION(a,b,c) ((a)*10000+(b)*100+(c))
2257
2257
{
2258
2258
        channelsOpen = 0;
2259
2259
        logstream = new PAsteriskLog();
 
2260
        PTrace::SetStream(logstream); 
2260
2261
        endPoint = new MyH323EndPoint();
2261
2262
}
2262
2263
 
2672
2673
        close(_timerChangePipe[1]);
2673
2674
#endif
2674
2675
        if (logstream) {
 
2676
                PTrace::SetStream(NULL);
2675
2677
                delete logstream;
2676
2678
                logstream = NULL;
2677
2679
        }