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

« back to all changes in this revision

Viewing changes to deadcall.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2010-06-13 16:15:44 UTC
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20100613161544-34ke9f9x5kole5p3
Tags: upstream-3.1
ImportĀ upstreamĀ versionĀ 3.1

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, struct sockaddr_storage *);
 
8
  virtual bool process_incoming(char * msg);
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
 
16
18
  /* Dump call info to error log. */
17
19
  virtual void dump();
18
20
 
19
21
protected:
20
 
  unsigned long expiration;
 
22
  int expiration;
21
23
  char *reason;
22
24
};