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

5
Last change on this file since 2d0bc83 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • 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.org/license/LICENSE.
19 */
20#ifndef __IF_HDLCSUBR_H
21#define __IF_HDLCSUBR_H
22
23struct ifnet;
24struct mbuf;
25struct sockaddr;
26struct rtentry;
27
28void    hdlc_ifattach (struct ifnet *);
29void    hdlc_input (struct ifnet *, struct mbuf *);
30int     hdlc_output (struct ifnet *,
31           struct mbuf *, struct sockaddr *, struct rtentry *);
32int     hdlc_ioctl (struct ifnet *, int , caddr_t );
33
34#endif
Note: See TracBrowser for help on using the repository browser.