~ubuntu-branches/ubuntu/precise/linux-lowlatency/precise

« back to all changes in this revision

Viewing changes to include/rxrpc/types.h

  • Committer: Package Import Robot
  • Author(s): Alessio Igor Bogani
  • Date: 2011-10-26 11:13:05 UTC
  • Revision ID: package-import@ubuntu.com-20111026111305-tz023xykf0i6eosh
Tags: upstream-3.2.0
ImportĀ upstreamĀ versionĀ 3.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* types.h: Rx types
 
2
 *
 
3
 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
 
4
 * Written by David Howells (dhowells@redhat.com)
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU General Public License
 
8
 * as published by the Free Software Foundation; either version
 
9
 * 2 of the License, or (at your option) any later version.
 
10
 */
 
11
 
 
12
#ifndef _LINUX_RXRPC_TYPES_H
 
13
#define _LINUX_RXRPC_TYPES_H
 
14
 
 
15
#include <linux/types.h>
 
16
#include <linux/list.h>
 
17
#include <linux/socket.h>
 
18
#include <linux/in.h>
 
19
#include <linux/spinlock.h>
 
20
#include <linux/atomic.h>
 
21
 
 
22
typedef uint32_t        rxrpc_seq_t;    /* Rx message sequence number */
 
23
typedef uint32_t        rxrpc_serial_t; /* Rx message serial number */
 
24
typedef __be32  rxrpc_seq_net_t; /* on-the-wire Rx message sequence number */
 
25
typedef __be32  rxrpc_serial_net_t; /* on-the-wire Rx message serial number */
 
26
 
 
27
struct rxrpc_call;
 
28
struct rxrpc_connection;
 
29
struct rxrpc_header;
 
30
struct rxrpc_message;
 
31
struct rxrpc_operation;
 
32
struct rxrpc_peer;
 
33
struct rxrpc_service;
 
34
typedef struct rxrpc_timer rxrpc_timer_t;
 
35
struct rxrpc_transport;
 
36
 
 
37
typedef void (*rxrpc_call_attn_func_t)(struct rxrpc_call *call);
 
38
typedef void (*rxrpc_call_error_func_t)(struct rxrpc_call *call);
 
39
typedef void (*rxrpc_call_aemap_func_t)(struct rxrpc_call *call);
 
40
 
 
41
#endif /* _LINUX_RXRPC_TYPES_H */