~ubuntu-branches/ubuntu/natty/knemo/natty

« back to all changes in this revision

Viewing changes to src/knemod/backends/backendbase.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-02-22 16:36:22 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20110222163622-d8i62gy1stn7tydv
Tags: 0.7.0-0ubuntu1
* New upstream release.
* Switch to source format 3.0 (quilt).
* Make knemo depend on libqt4-sql-sqlite.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
     * interfaces in the QHash.
52
52
     */
53
53
    virtual void update() = 0;
54
 
    virtual QStringList getIfaceList() = 0;
55
 
    virtual QString getDefaultRouteIface( int afInet ) = 0;
56
 
    const BackendData* add( const QString& iface );
57
 
    void remove( const QString& iface );
 
54
    virtual QStringList ifaceList() = 0;
 
55
    virtual QString defaultRouteIface( int afInet ) = 0;
 
56
    const BackendData* addIface( const QString& iface );
 
57
    void removeIface( const QString& iface );
58
58
    void clearTraffic( const QString& iface );
59
59
    void updatePackets( const QString& iface );
60
60