WIP FPC-III support
[linux/fpc-iii.git] / include / net / phonet / gprs.h
blob6b7f57b2f92c99e45e538e9b5fa75a72f4988cd7
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * File: pep_gprs.h
5 * GPRS over Phonet pipe end point socket
7 * Copyright (C) 2008 Nokia Corporation.
9 * Author: RĂ©mi Denis-Courmont
12 #ifndef NET_PHONET_GPRS_H
13 #define NET_PHONET_GPRS_H
15 struct sock;
16 struct sk_buff;
18 int pep_writeable(struct sock *sk);
19 int pep_write(struct sock *sk, struct sk_buff *skb);
20 struct sk_buff *pep_read(struct sock *sk);
22 int gprs_attach(struct sock *sk);
23 void gprs_detach(struct sock *sk);
25 #endif