mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-24 06:40:16 +01:00
* configure.in src/Makefile.am src/NetworkManagerDevice.c src/NetworkManager.c src/NetworkManagerUtils.[ch] src/backends/NetworkManagerSystem.h src/backends/NetworkManagerRedHat.c src/backends/NetworkManagerGentoo.c - Refactor system-specific code into separate backends for each distribution git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@62 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
/* NetworkManager -- Network link manager
|
|
*
|
|
* Dan Williams <dcbw@redhat.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* (C) Copyright 2004 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef NETWORK_MANAGER_UTILS_H
|
|
#define NETWORK_MANAGER_UTILS_H
|
|
|
|
#include <glib.h>
|
|
#include <stdio.h>
|
|
#include <syslog.h>
|
|
#include <net/ethernet.h>
|
|
#include <iwlib.h>
|
|
|
|
#include "NetworkManager.h"
|
|
#include "NetworkManagerDevice.h"
|
|
|
|
gboolean nm_try_acquire_mutex (GMutex *mutex, const char *func);
|
|
void nm_unlock_mutex (GMutex *mutex, const char *func);
|
|
|
|
int nm_null_safe_strcmp (const char *s1, const char *s2);
|
|
|
|
int nm_get_network_control_socket (void);
|
|
|
|
gboolean nm_ethernet_address_is_valid (struct ether_addr *test_addr);
|
|
|
|
void nm_dispose_scan_results (wireless_scan *result_list);
|
|
|
|
int nm_spawn_process (char *args);
|
|
|
|
#endif
|