cdp.h 399 B

1234567891011121314151617181920
  1. /*
  2. * Copied from Linux Monitor (LiMon) - Networking.
  3. *
  4. * Copyright 1994 - 2000 Neil Russell.
  5. * (See License)
  6. * Copyright 2000 Roland Borde
  7. * Copyright 2000 Paolo Scaffardi
  8. * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
  9. */
  10. #if defined(CONFIG_CMD_CDP)
  11. #ifndef __CDP_H__
  12. #define __CDP_H__
  13. void CDPStart(void);
  14. void CDPHandler(const uchar *pkt, unsigned len);
  15. #endif /* __CDP_H__ */
  16. #endif