1 /* 2 * uqmi -- tiny QMI support implementation 3 * 4 * Copyright (C) 2023 Alexander Couzens <lynxis@fe80.eu> 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public 8 * License as published by the Free Software Foundation; either 9 * version 2 of the License, or (at your option) any later version. 10 * 11 * This library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * General Public License for more details. 15 */ 16 17 #ifndef __UQMID_GSMTAP_UTIL_H 18 #define __UQMID_GSMTAP_UTIL_H 19 20 #include <stddef.h> 21 22 struct modem; 23 24 int gsmtap_enable(const char *gsmtap_addr); 25 void gsmtap_disable(void); 26 void gsmtap_send(struct modem *modem, void *data, size_t length); 27 28 #endif /* __UQMID_GSMTAP_UTIL_H */ 29
This page was automatically generated by LXR 0.3.1. • OpenWrt