af_rxrpc.h 1.8 KB
Newer Older
1
/* RxRPC kernel service interface definitions
2
 *
3
 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 5 6 7 8 9 10 11 12 13 14 15 16
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#ifndef _NET_RXRPC_H
#define _NET_RXRPC_H

#include <linux/rxrpc.h>

17 18 19
struct key;
struct sock;
struct socket;
20 21
struct rxrpc_call;

22 23
typedef void (*rxrpc_notify_rx_t)(struct sock *, struct rxrpc_call *,
				  unsigned long);
24 25 26 27
typedef void (*rxrpc_notify_new_call_t)(struct sock *, struct rxrpc_call *,
					unsigned long);
typedef void (*rxrpc_discard_new_call_t)(struct rxrpc_call *, unsigned long);
typedef void (*rxrpc_user_attach_call_t)(struct rxrpc_call *, unsigned long);
28

29
void rxrpc_kernel_new_call_notification(struct socket *,
30 31
					rxrpc_notify_new_call_t,
					rxrpc_discard_new_call_t);
32 33 34 35
struct rxrpc_call *rxrpc_kernel_begin_call(struct socket *,
					   struct sockaddr_rxrpc *,
					   struct key *,
					   unsigned long,
36 37
					   gfp_t,
					   rxrpc_notify_rx_t);
38 39
int rxrpc_kernel_send_data(struct socket *, struct rxrpc_call *,
			   struct msghdr *, size_t);
40 41
int rxrpc_kernel_recv_data(struct socket *, struct rxrpc_call *,
			   void *, size_t, size_t *, bool, u32 *);
42
bool rxrpc_kernel_abort_call(struct socket *, struct rxrpc_call *,
43
			     u32, int, const char *);
44
void rxrpc_kernel_end_call(struct socket *, struct rxrpc_call *);
45 46
void rxrpc_kernel_get_peer(struct socket *, struct rxrpc_call *,
			   struct sockaddr_rxrpc *);
47 48
int rxrpc_kernel_charge_accept(struct socket *, rxrpc_notify_rx_t,
			       rxrpc_user_attach_call_t, unsigned long, gfp_t);
49

50
#endif /* _NET_RXRPC_H */