Whamcloud - gitweb
b=5498
[fs/lustre-release.git] / lnet / ulnds / socklnd / bridge.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2002 Cray Inc.
5  *
6  *   This file is part of Portals, http://www.sf.net/projects/sandiaportals/
7  */
8
9 #ifndef TCPNAL_PROCBRIDGE_H
10 #define TCPNAL_PROCBRIDGE_H
11
12 #include <lnet/lib-lnet.h>
13
14 typedef struct bridge {
15     int alive;
16     lnet_ni_t *b_ni;
17     void *lower;
18     void *local;
19     /* this doesn't really belong here */
20     unsigned char iptop8;
21 } *bridge;
22
23 #endif