1*1f504dbdSmatthias.ringwald /* 2*1f504dbdSmatthias.ringwald * hci.h 3*1f504dbdSmatthias.ringwald * 4*1f504dbdSmatthias.ringwald * Created by Matthias Ringwald on 4/29/09. 5*1f504dbdSmatthias.ringwald * 6*1f504dbdSmatthias.ringwald */ 7*1f504dbdSmatthias.ringwald 8*1f504dbdSmatthias.ringwald #pragma once 9*1f504dbdSmatthias.ringwald 10*1f504dbdSmatthias.ringwald #include "hci_transport.h" 11*1f504dbdSmatthias.ringwald 12*1f504dbdSmatthias.ringwald // run the hci daemon loop 13*1f504dbdSmatthias.ringwald void hci_run(hci_transport_t *transport, void *config); 14*1f504dbdSmatthias.ringwald 15