~ubuntu-branches/ubuntu/utopic/sip-tester/utopic

« back to all changes in this revision

Viewing changes to deadcall.hpp

  • Committer: Package Import Robot
  • Author(s): Mark Purcell, Paul Belanger, Mark Purcell
  • Date: 2011-11-03 21:56:17 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20111103215617-nnxicj1oto9e8ix5
Tags: 1:3.2-1
[ Paul Belanger ]
* New Upstream Release (Closes: #623915).
* Switch to dpkg-source 3.0 (quilt) format
* Building with PCAP play.
* Switch back to Debhelper.
* debian/patches/spelling-error-in-binary: Fix lintian warning

[ Mark Purcell ]
* Drop pabs from Uploaders: at his request
* fix debhelper-overrides-need-versioned-build-depends
* fix description-synopsis-starts-with-article

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
  deadcall(char *id, char * reason);
6
6
  ~deadcall();
7
7
 
8
 
  virtual bool process_incoming(char * msg);
 
8
  virtual bool process_incoming(char * msg, struct sockaddr_storage *);
9
9
  virtual bool  process_twinSippCom(char * msg);
10
10
 
11
11
  virtual bool run();
13
13
  /* When should this call wake up? */
14
14
  virtual unsigned int wake();
15
15
 
16
 
  virtual void abort();
17
 
 
18
16
  /* Dump call info to error log. */
19
17
  virtual void dump();
20
18
 
21
19
protected:
22
 
  int expiration;
 
20
  unsigned long expiration;
23
21
  char *reason;
24
22
};