| Line No. | Rev | Author | Line |
|---|---|---|---|
| 1 | 32 | kaklik | /********************************************************************* |
| 2 | * |
||
| 3 | * AutoIP Defs for Microchip TCP/IP Stack |
||
| 4 | * |
||
| 5 | ********************************************************************* |
||
| 6 | * FileName: AutoIP.h |
||
| 7 | * Dependencies: |
||
| 8 | * Processor: PIC18, PIC24F, PIC24H, dsPIC30F, dsPIC33F, PIC32 |
||
| 9 | * Compiler: Microchip C32 v1.05 or higher |
||
| 10 | * Microchip C30 v3.12 or higher |
||
| 11 | * Microchip C18 v3.30 or higher |
||
| 12 | * HI-TECH PICC-18 PRO 9.63PL2 or higher |
||
| 13 | * Company: Microchip Technology, Inc. |
||
| 14 | * |
||
| 15 | * Software License Agreement |
||
| 16 | * |
||
| 17 | * Copyright (C) 2002-2009 Microchip Technology Inc. All rights |
||
| 18 | * reserved. |
||
| 19 | * |
||
| 20 | * Microchip licenses to you the right to use, modify, copy, and |
||
| 21 | * distribute: |
||
| 22 | * (i) the Software when embedded on a Microchip microcontroller or |
||
| 23 | * digital signal controller product ("Device") which is |
||
| 24 | * integrated into Licensee's product; or |
||
| 25 | * (ii) ONLY the Software driver source files ENC28J60.c, ENC28J60.h, |
||
| 26 | * ENCX24J600.c and ENCX24J600.h ported to a non-Microchip device |
||
| 27 | * used in conjunction with a Microchip ethernet controller for |
||
| 28 | * the sole purpose of interfacing with the ethernet controller. |
||
| 29 | * |
||
| 30 | * You should refer to the license agreement accompanying this |
||
| 31 | * Software for additional information regarding your rights and |
||
| 32 | * obligations. |
||
| 33 | * |
||
| 34 | * THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT |
||
| 35 | * WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT |
||
| 36 | * LIMITATION, ANY WARRANTY OF MERCHANTABILITY, FITNESS FOR A |
||
| 37 | * PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL |
||
| 38 | * MICROCHIP BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR |
||
| 39 | * CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF |
||
| 40 | * PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR SERVICES, ANY CLAIMS |
||
| 41 | * BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE |
||
| 42 | * THEREOF), ANY CLAIMS FOR INDEMNITY OR CONTRIBUTION, OR OTHER |
||
| 43 | * SIMILAR COSTS, WHETHER ASSERTED ON THE BASIS OF CONTRACT, TORT |
||
| 44 | * (INCLUDING NEGLIGENCE), BREACH OF WARRANTY, OR OTHERWISE. |
||
| 45 | * |
||
| 46 | * |
||
| 47 | * Author Date Comment |
||
| 48 | *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
||
| 49 | * Peter Reen 7/10/09 Original (Rev 1.0) |
||
| 50 | ********************************************************************/ |
||
| 51 | |||
| 52 | #ifndef __AUTOIP_H |
||
| 53 | #define __AUTOIP_H |
||
| 54 | |||
| 55 | // AutoIP State Machine |
||
| 56 | typedef enum _SM_AUTOIP |
||
| 57 | { |
||
| 58 | SM_AUTOIP_DISABLED = 0, |
||
| 59 | SM_AUTOIP_INIT_RNG, |
||
| 60 | SM_AUTOIP_CHECK_ADDRESS, |
||
| 61 | SM_AUTOIP_SETUP_MESSAGE, |
||
| 62 | SM_AUTOIP_GRATUITOUS_ARP1, |
||
| 63 | SM_AUTOIP_GRATUITOUS_ARP2, |
||
| 64 | SM_AUTOIP_GRATUITOUS_ARP3, |
||
| 65 | SM_AUTOIP_DELAY, |
||
| 66 | SM_AUTOIP_RATE_LIMIT_SET, |
||
| 67 | SM_AUTOIP_RATE_LIMIT_WAIT, |
||
| 68 | SM_AUTOIP_CONFIGURED, |
||
| 69 | SM_AUTOIP_DEFEND |
||
| 70 | } SM_AUTOIP; |
||
| 71 | |||
| 72 | |||
| 73 | // Function prototypes |
||
| 74 | void AutoIPInit(BYTE vInterface); |
||
| 75 | void AutoIPTasks(void); |
||
| 76 | void AutoIPConflict(BYTE vInterface); |
||
| 77 | BOOL AutoIPIsConfigured(BYTE vInterface); |
||
| 78 | BOOL AutoIPConfigIsInProgress (BYTE vInterface); |
||
| 79 | BOOL AutoIPIsDisabled(BYTE vInterface); |
||
| 80 | void AutoIPDisable(BYTE vInterface); |
||
| 81 | void AutoIPEnable(BYTE vInterface); |
||
| 82 | |||
| 83 | |||
| 84 | #endif |
Powered by WebSVN v2.8.3