Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * File: pep_gprs.h
0004  *
0005  * GPRS over Phonet pipe end point socket
0006  *
0007  * Copyright (C) 2008 Nokia Corporation.
0008  *
0009  * Author: Rémi Denis-Courmont
0010  */
0011 
0012 #ifndef NET_PHONET_GPRS_H
0013 #define NET_PHONET_GPRS_H
0014 
0015 struct sock;
0016 struct sk_buff;
0017 
0018 int pep_writeable(struct sock *sk);
0019 int pep_write(struct sock *sk, struct sk_buff *skb);
0020 struct sk_buff *pep_read(struct sock *sk);
0021 
0022 int gprs_attach(struct sock *sk);
0023 void gprs_detach(struct sock *sk);
0024 
0025 #endif