technology: Remove global rfkill table
[framework/connectivity/connman.git] / src / rfkill.c
index 0f54185..3d214ef 100644 (file)
@@ -76,13 +76,11 @@ static enum connman_service_type convert_type(uint8_t type)
 
 static GIOStatus rfkill_process(GIOChannel *chan)
 {
-       GIOStatus status = G_IO_STATUS_NORMAL;
        unsigned char buf[32];
        struct rfkill_event *event = (void *) buf;
-       char sysname[32];
        enum connman_service_type type;
-       connman_bool_t blocked;
        gsize len;
+       GIOStatus status;
 
        DBG("");
 
@@ -101,31 +99,19 @@ static GIOStatus rfkill_process(GIOChannel *chan)
                                                event->type, event->op,
                                                event->soft, event->hard);
 
+       type = convert_type(event->type);
+
        switch (event->op) {
        case RFKILL_OP_ADD:
-               type = convert_type(event->type);
                __connman_technology_add_rfkill(event->idx, type,
                                                event->soft, event->hard);
                break;
        case RFKILL_OP_DEL:
-               __connman_technology_remove_rfkill(event->idx);
+               __connman_technology_remove_rfkill(event->idx, type);
                break;
        case RFKILL_OP_CHANGE:
-               __connman_technology_update_rfkill(event->idx, event->soft,
-                                                               event->hard);
-               break;
-       default:
-               break;
-       }
-
-       snprintf(sysname, sizeof(sysname) - 1, "rfkill%d", event->idx);
-
-       blocked = (event->soft || event->hard) ? TRUE : FALSE;
-
-       switch (event->type) {
-       case RFKILL_TYPE_ALL:
-       case RFKILL_TYPE_WLAN:
-               /* FIXME: unblock device */
+               __connman_technology_update_rfkill(event->idx, type,
+                                               event->soft, event->hard);
                break;
        default:
                break;
@@ -164,6 +150,9 @@ int __connman_rfkill_init(void)
        channel = g_io_channel_unix_new(fd);
        g_io_channel_set_close_on_unref(channel, TRUE);
 
+       g_io_channel_set_encoding(channel, NULL, NULL);
+       g_io_channel_set_buffered(channel, FALSE);
+
        flags = g_io_channel_get_flags(channel);
        flags |= G_IO_FLAG_NONBLOCK;
        g_io_channel_set_flags(channel, flags, NULL);