summaryrefslogtreecommitdiff
path: root/libnm-glib/nm-access-point.h
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2011-03-11 09:36:41 -0600
committerDan Williams <dcbw@redhat.com>2011-03-11 09:36:41 -0600
commitf30e15a04d56a922f50e20c3c155a452d635a187 (patch)
treeb7d9e3a6352d42e3af3f8d690b6941aaa7f8250c /libnm-glib/nm-access-point.h
parent368fb861f8513ad884674451247d3e98ed8ca546 (diff)
downloadNetworkManager-f30e15a04d56a922f50e20c3c155a452d635a187.tar.gz
libnm-glib: add nm_access_point_filter_connections()
Diffstat (limited to 'libnm-glib/nm-access-point.h')
-rw-r--r--libnm-glib/nm-access-point.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/libnm-glib/nm-access-point.h b/libnm-glib/nm-access-point.h
index 26d5a493bf..24b69d5e67 100644
--- a/libnm-glib/nm-access-point.h
+++ b/libnm-glib/nm-access-point.h
@@ -42,12 +42,16 @@ G_BEGIN_DECLS
#define NM_ACCESS_POINT_WPA_FLAGS "wpa-flags"
#define NM_ACCESS_POINT_RSN_FLAGS "rsn-flags"
#define NM_ACCESS_POINT_SSID "ssid"
+#define NM_ACCESS_POINT_BSSID "bssid"
#define NM_ACCESS_POINT_FREQUENCY "frequency"
-#define NM_ACCESS_POINT_HW_ADDRESS "hw-address"
#define NM_ACCESS_POINT_MODE "mode"
#define NM_ACCESS_POINT_MAX_BITRATE "max-bitrate"
#define NM_ACCESS_POINT_STRENGTH "strength"
+/* DEPRECATED */
+#define NM_ACCESS_POINT_HW_ADDRESS "hw-address"
+
+
typedef struct {
NMObject parent;
} NMAccessPoint;
@@ -72,12 +76,18 @@ NM80211ApFlags nm_access_point_get_flags (NMAccessPoint *ap);
NM80211ApSecurityFlags nm_access_point_get_wpa_flags (NMAccessPoint *ap);
NM80211ApSecurityFlags nm_access_point_get_rsn_flags (NMAccessPoint *ap);
const GByteArray * nm_access_point_get_ssid (NMAccessPoint *ap);
+const char * nm_access_point_get_bssid (NMAccessPoint *ap);
guint32 nm_access_point_get_frequency (NMAccessPoint *ap);
-const char * nm_access_point_get_hw_address (NMAccessPoint *ap);
NM80211Mode nm_access_point_get_mode (NMAccessPoint *ap);
guint32 nm_access_point_get_max_bitrate (NMAccessPoint *ap);
guint8 nm_access_point_get_strength (NMAccessPoint *ap);
+GSList * nm_access_point_filter_connections (NMAccessPoint *ap,
+ const GSList *connections);
+
+/* DEPRECATED */
+const char * nm_access_point_get_hw_address (NMAccessPoint *ap);
+
G_END_DECLS
#endif /* NM_ACCESS_POINT_H */