blob: 6b7f57b2f92c99e45e538e9b5fa75a72f4988cd7 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * File: pep_gprs.h
4 *
5 * GPRS over Phonet pipe end point socket
6 *
7 * Copyright (C) 2008 Nokia Corporation.
8 *
9 * Author: Rémi Denis-Courmont
10 */
11
12#ifndef NET_PHONET_GPRS_H
13#define NET_PHONET_GPRS_H
14
15struct sock;
16struct sk_buff;
17
18int pep_writeable(struct sock *sk);
19int pep_write(struct sock *sk, struct sk_buff *skb);
20struct sk_buff *pep_read(struct sock *sk);
21
22int gprs_attach(struct sock *sk);
23void gprs_detach(struct sock *sk);
24
25#endif