Free (GPLv2) TCP/IP stack developed by TASS Belgium

Dependents:   lpc1768-picotcp-demo ZeroMQ_PicoTCP_Publisher_demo TCPSocket_HelloWorld_PicoTCP Pico_TCP_UDP_Test ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers pico_slaacv4.h Source File

pico_slaacv4.h

00001 /*********************************************************************
00002    PicoTCP. Copyright (c) 2012-2015 Altran Intelligent Systems. Some rights reserved.
00003    See LICENSE and COPYING for usage.
00004 
00005    Authors: Bogdan Lupu
00006  *********************************************************************/
00007 #ifndef INCLUDE_PICO_SUPPORT_SLAACV4
00008 #define INCLUDE_PICO_SUPPORT_SLAACV4
00009 #include "pico_arp.h"
00010 
00011 #define PICO_SLAACV4_SUCCESS  0
00012 #define PICO_SLAACV4_ERROR    1
00013 
00014 int     pico_slaacv4_claimip(struct pico_device *dev, void (*cb)(struct pico_ip4 *ip,  uint8_t code));
00015 void    pico_slaacv4_unregisterip(void);
00016 
00017 #endif /* _INCLUDE_PICO_SUPPORT_SLAACV4 */
00018