1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
/*
*
* Connection Manager
*
* Copyright (C) 2007-2009 Intel Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifndef __CONNMAN_SERVICE_H
#define __CONNMAN_SERVICE_H
#include <connman/types.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* SECTION:service
* @title: Service premitives
* @short_description: Functions for handling services
*/
enum connman_service_type {
CONNMAN_SERVICE_TYPE_UNKNOWN = 0,
CONNMAN_SERVICE_TYPE_SYSTEM = 1,
CONNMAN_SERVICE_TYPE_ETHERNET = 2,
CONNMAN_SERVICE_TYPE_WIFI = 3,
CONNMAN_SERVICE_TYPE_WIMAX = 4,
CONNMAN_SERVICE_TYPE_BLUETOOTH = 5,
CONNMAN_SERVICE_TYPE_CELLULAR = 6,
CONNMAN_SERVICE_TYPE_VPN = 7,
};
enum connman_service_mode {
CONNMAN_SERVICE_MODE_UNKNOWN = 0,
CONNMAN_SERVICE_MODE_MANAGED = 1,
CONNMAN_SERVICE_MODE_ADHOC = 2,
CONNMAN_SERVICE_MODE_GPRS = 3,
CONNMAN_SERVICE_MODE_EDGE = 4,
CONNMAN_SERVICE_MODE_UMTS = 5,
};
enum connman_service_security {
CONNMAN_SERVICE_SECURITY_UNKNOWN = 0,
CONNMAN_SERVICE_SECURITY_NONE = 1,
CONNMAN_SERVICE_SECURITY_WEP = 2,
CONNMAN_SERVICE_SECURITY_PSK = 3,
CONNMAN_SERVICE_SECURITY_8021X = 4,
CONNMAN_SERVICE_SECURITY_WPA = 8,
CONNMAN_SERVICE_SECURITY_RSN = 9,
};
enum connman_service_state {
CONNMAN_SERVICE_STATE_UNKNOWN = 0,
CONNMAN_SERVICE_STATE_IDLE = 1,
CONNMAN_SERVICE_STATE_ASSOCIATION = 2,
CONNMAN_SERVICE_STATE_CONFIGURATION = 3,
CONNMAN_SERVICE_STATE_READY = 4,
CONNMAN_SERVICE_STATE_DISCONNECT = 6,
CONNMAN_SERVICE_STATE_FAILURE = 7,
};
enum connman_service_error {
CONNMAN_SERVICE_ERROR_UNKNOWN = 0,
CONNMAN_SERVICE_ERROR_OUT_OF_RANGE = 1,
CONNMAN_SERVICE_ERROR_PIN_MISSING = 2,
CONNMAN_SERVICE_ERROR_DHCP_FAILED = 3,
CONNMAN_SERVICE_ERROR_CONNECT_FAILED = 4,
};
struct connman_service;
struct connman_service *connman_service_create(void);
struct connman_service *connman_service_ref(struct connman_service *service);
void connman_service_unref(struct connman_service *service);
enum connman_service_type connman_service_get_type(struct connman_service *service);
char *connman_service_get_interface(struct connman_service *service);
int connman_service_set_favorite(struct connman_service *service,
connman_bool_t favorite);
#ifdef __cplusplus
}
#endif
#endif /* __CONNMAN_SERVICE_H */
|