source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/network/if_hdlcsubr.h @ f05b2ac

4.104.114.84.95
Last change on this file since f05b2ac was f05b2ac, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/21/04 at 16:01:48

Remove duplicate white lines.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*
2 * RTEMS/TCPIP driver for MPC8260 SCC HDLC networking
3 *
4 * Submitted by Andy Dachs <a.dachs@sstl.co.uk>
5 * (c) Surrey Satellite Technology Limited, 2001
6 *
7 *   On the ADS board the ethernet interface is connected to FCC2
8 *   but in my application I want TCP over HDLC (see README)
9 *   so will use SCC3 as the network interface. I have other plans
10 *   for the FCCs so am unlikely to add true ethernet support to
11 *   this BSP.  Contributions welcome!
12 *
13 *  COPYRIGHT (c) 1989-1997.
14 *  On-Line Applications Research Corporation (OAR).
15 *
16 *  The license and distribution terms for this file may in
17 *  the file LICENSE in this distribution or at
18 *  http://www.rtems.com/license/LICENSE.
19 *
20 *  $Id$
21 */
22#ifndef __IF_HDLCSUBR_H
23#define __IF_HDLCSUBR_H
24
25struct ifnet;
26struct mbuf;
27struct sockaddr;
28struct rtentry;
29
30void    hdlc_ifattach __P((struct ifnet *));
31void    hdlc_input __P((struct ifnet *, struct mbuf *));
32int     hdlc_output __P((struct ifnet *,
33           struct mbuf *, struct sockaddr *, struct rtentry *));
34int     hdlc_ioctl __P((struct ifnet *, int , caddr_t ));
35
36#endif
Note: See TracBrowser for help on using the repository browser.