Files
my-os-project2/kernel/picotcp/modules/pico_slaacv4.h
2025-10-29 14:29:06 +01:00

19 lines
664 B
C

/*********************************************************************
PicoTCP. Copyright (c) 2012-2017 Altran Intelligent Systems. Some rights reserved.
See COPYING, LICENSE.GPLv2 and LICENSE.GPLv3 for usage.
Authors: Bogdan Lupu
*********************************************************************/
#ifndef INCLUDE_PICO_SUPPORT_SLAACV4
#define INCLUDE_PICO_SUPPORT_SLAACV4
#include "pico_arp.h"
#define PICO_SLAACV4_SUCCESS 0
#define PICO_SLAACV4_ERROR 1
int pico_slaacv4_claimip(struct pico_device *dev, void (*cb)(struct pico_ip4 *ip, uint8_t code));
void pico_slaacv4_unregisterip(void);
#endif /* _INCLUDE_PICO_SUPPORT_SLAACV4 */