~ubuntu-branches/debian/lenny/network-manager/lenny

« back to all changes in this revision

Viewing changes to src/nm-device-802-3-ethernet.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2008-07-05 15:11:33 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080705151133-rnwi7uuhda2iulug
Tags: 0.6.6-2
* debian/control
  - Add Build-Depends on pkg-config.
  - Drop obsolete Depends on iputils-arping. (Closes: #487794)
* debian/patches/09-nm_dbus_get_ap_from_object_path-mem_leak_fix.patch 
  - Fix memory leak in src/nm-dbus-net.c. (Closes: #488604)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
#include <glib-object.h>
26
26
#include <dbus/dbus.h>
27
 
#include <net/ethernet.h>
28
27
 
29
28
#include "nm-device.h"
30
29
 
66
65
        return (G_OBJECT_TYPE (dev) == NM_TYPE_DEVICE_802_3_ETHERNET);
67
66
}
68
67
 
69
 
void nm_device_802_3_ethernet_get_address (NMDevice8023Ethernet *dev,
70
 
                                                                   struct ether_addr *addr);
71
 
 
72
 
void nm_device_802_3_ethernet_set_address (NMDevice8023Ethernet *dev);
73
 
 
74
68
int nm_device_802_3_ethernet_get_speed (NMDevice8023Ethernet *self);
75
69
 
76
70
G_END_DECLS