···11+/*22+ * File: pep_gprs.h33+ *44+ * GPRS over Phonet pipe end point socket55+ *66+ * Copyright (C) 2008 Nokia Corporation.77+ *88+ * Author: Rémi Denis-Courmont <remi.denis-courmont@nokia.com>99+ *1010+ * This program is free software; you can redistribute it and/or1111+ * modify it under the terms of the GNU General Public License1212+ * version 2 as published by the Free Software Foundation.1313+ *1414+ * This program is distributed in the hope that it will be useful, but1515+ * WITHOUT ANY WARRANTY; without even the implied warranty of1616+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU1717+ * General Public License for more details.1818+ *1919+ * You should have received a copy of the GNU General Public License2020+ * along with this program; if not, write to the Free Software2121+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA2222+ * 02110-1301 USA2323+ */2424+2525+#ifndef NET_PHONET_GPRS_H2626+#define NET_PHONET_GPRS_H2727+2828+struct sock;2929+struct sk_buff;3030+3131+int pep_writeable(struct sock *sk);3232+int pep_write(struct sock *sk, struct sk_buff *skb);3333+struct sk_buff *pep_read(struct sock *sk);3434+3535+int gprs_attach(struct sock *sk);3636+void gprs_detach(struct sock *sk);3737+3838+#endif