~ubuntu-branches/ubuntu/saucy/ekiga/saucy

« back to all changes in this revision

Viewing changes to plugins/loudmouth/loudmouth-heap-roster.h

  • Committer: Package Import Robot
  • Author(s): Eugen Dedu, Eugen Dedu
  • Date: 2012-12-09 22:43:35 UTC
  • mfrom: (5.1.7)
  • Revision ID: package-import@ubuntu.com-20121209224335-poklwmxa9dx4upjs
Tags: 4.0.0-1
[ Eugen Dedu ]
* New upstream stable release (Closes: #663539, CVE-2012-5621)
* Add README.security containing a warning about stun service

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
 
120
120
    LmHandlerResult message_handler_roster (LmMessage* message);
121
121
    LmHandlerResult message_handler_muc (LmMessage* message);
 
122
 
 
123
    const std::set<std::string> existing_groups () const;
 
124
 
 
125
    /* when adding an item, we first ask to add it to the roster,
 
126
     * then get notified that it was really added,
 
127
     * and then we could ask to subscribe to it,
 
128
     * *but* we don't want to do that if that was done from another client
 
129
     * so when we ask to add it, we note it in that set, so when we get
 
130
     * notified it was added, we can know we did that and act accordingly.
 
131
     */
 
132
    std::set<std::string> items_added_by_me;
122
133
  };
123
134
 
124
135
  typedef boost::shared_ptr<HeapRoster> HeapRosterPtr;