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

« back to all changes in this revision

Viewing changes to listener.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:
34
34
  listener(char *id, bool listening);
35
35
  virtual ~listener();
36
36
  char *getId();
37
 
  virtual bool process_incoming(char * msg, struct sockaddr_storage *src) = 0;
 
37
  virtual bool process_incoming(char * msg) = 0;
38
38
  virtual bool process_twinSippCom(char * msg) = 0;
39
39
 
40
40
protected: