gprs.h 489 B

12345678910111213141516171819202122232425
  1. /* 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. #ifndef NET_PHONET_GPRS_H
  12. #define NET_PHONET_GPRS_H
  13. struct sock;
  14. struct sk_buff;
  15. int pep_writeable(struct sock *sk);
  16. int pep_write(struct sock *sk, struct sk_buff *skb);
  17. struct sk_buff *pep_read(struct sock *sk);
  18. int gprs_attach(struct sock *sk);
  19. void gprs_detach(struct sock *sk);
  20. #endif