~ubuntu-branches/debian/stretch/psi-plus/stretch

« back to all changes in this revision

Viewing changes to iris/src/irisnet/corelib/jdnsshared.h

  • Committer: Package Import Robot
  • Author(s): Boris Pek
  • Date: 2013-10-23 02:42:20 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20131023024220-bk2hyoenqkwfhpgw
Tags: 0.16.242-1
* New upstream release:
  fixed the problem of initialization of private conversation when both
  sides use libotr 4.0.x. (Closes: #724880)
* Update debian/watch: sources were moved.
* Delete psi-plus-content-downloader package and update all related files.
  This plugin is in psi-plus-plugins package now.
* Update debian/control:
  - remove all currently unneeded Replaces and Breaks fields
  - add build dependency on libidn11-dev
* Update debian/rules: simplify get-orig-source section.
* Update debian/copyright:
  - update Source field due to changes in sources location
  - remove copyright holders whose code was deleted from source tree
    (bundled libidn library was removed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
\code
41
41
JDnsSharedDebug *db = new JDnsSharedDebug;
42
 
connect(db, SIGNAL(debugLinesReady(const QStringList &)),
43
 
        SLOT(db_debugLinesReady(const QStringList &)));
 
42
connect(db, SIGNAL(debugLinesReady(QStringList)),
 
43
        SLOT(db_debugLinesReady(QStringList)));
44
44
 
45
45
JDnsShared *jdnsShared1 = new JDnsShared(JDnsShared::UnicastInternet);
46
46
jdnsShared1->setDebug(db, "U");
466
466
 
467
467
           This operation primarily exists for Multicast mode, so that any published records have a chance to be unpublished.  If the JDnsShared object is simply deleted without performing a shutdown, then published records will linger on the network until their TTLs expire.
468
468
 
469
 
           When shutdown is complete, the shutdownFinished() signal will be emitted. 
 
469
           When shutdown is complete, the shutdownFinished() signal will be emitted.
470
470
        */
471
471
        void shutdown();
472
472