Ejemplo n.º 1
0
int cmtp_init_sockets(void)
{
	int err;

	err = proto_register(&cmtp_proto, 0);
	if (err < 0)
		return err;

	err = bt_sock_register(BTPROTO_CMTP, &cmtp_sock_family_ops);
	if (err < 0) {
		BT_ERR("Can't register CMTP socket");
		goto error;
	}

	err = bt_procfs_init(THIS_MODULE, &init_net, "cmtp", &cmtp_sk_list, NULL);
	if (err < 0) {
		BT_ERR("Failed to create CMTP proc file");
		bt_sock_unregister(BTPROTO_HIDP);
		goto error;
	}

	BT_INFO("CMTP socket layer initialized");

	return 0;

error:
	proto_unregister(&cmtp_proto);
	return err;
}
Ejemplo n.º 2
0
int __init bnep_sock_init(void)
{
	int err;

	err = proto_register(&bnep_proto, 0);
	if (err < 0)
		return err;

	err = bt_sock_register(BTPROTO_BNEP, &bnep_sock_family_ops);
	if (err < 0) {
		BT_ERR("Can't register BNEP socket");
		goto error;
	}

	err = bt_procfs_init(&init_net, "bnep", &bnep_sk_list, NULL);
	if (err < 0) {
		BT_ERR("Failed to create BNEP proc file");
		bt_sock_unregister(BTPROTO_BNEP);
		goto error;
	}

	BT_INFO("BNEP socket layer initialized");

	return 0;

error:
	proto_unregister(&bnep_proto);
	return err;
}
int __init hidp_init_sockets(void)
{
    int err;

    err = proto_register(&hidp_proto, 0);
    if (err < 0)
        return err;

    err = bt_sock_register(BTPROTO_HIDP, &hidp_sock_family_ops);
    if (err < 0) {
        BT_ERR("Can't register HIDP socket");
        goto error;
    }

    err = bt_procfs_init(&init_net, "hidp", &hidp_sk_list, NULL);
    if (err < 0) {
        BT_ERR("Failed to create HIDP proc file");
        bt_sock_unregister(BTPROTO_HIDP);
        goto error;
    }

    BT_INFO("HIDP socket layer initialized");

    return 0;

error:
    proto_unregister(&hidp_proto);
    return err;
}