Slight modification to license blub text in header comments.

This commit is contained in:
Richard Barry
2013-05-21 14:14:03 +00:00
parent fda145278e
commit 0158039f99
62 changed files with 393 additions and 285 deletions

View File

@ -4,10 +4,12 @@
* This file is part of the FreeRTOS+UDP distribution. The FreeRTOS+UDP license
* terms are different to the FreeRTOS license terms.
*
* FreeRTOS+UDP uses a dual license model that allows the software to be used
* under a pure GPL open source license (as opposed to the modified GPL license
* under which FreeRTOS is distributed) or a commercial license. Details of
* both license options follow:
* FreeRTOS+UDP uses a dual license model that allows the software to be used
* under a standard GPL open source license, or a commercial license. The
* standard GPL license (unlike the modified GPL license under which FreeRTOS
* itself is distributed) requires that all software statically linked with
* FreeRTOS+UDP is also distributed under the same GPL V2 license terms.
* Details of both license options follow:
*
* - Open source licensing -
* FreeRTOS+UDP is a free download and may be used, modified, evaluated and
@ -285,18 +287,19 @@ void vDHCPProcess( portBASE_TYPE xReset, xMACAddress_t *pxMACAddress, uint32_t *
eDHCPState = eNotUsingLeasedAddress;
xTimerStop( xDHCPTimer, ( portTickType ) 0 );
#if ipconfigFREERTOS_PLUS_NABTO == 1
{
vStartNabtoTask();
}
#endif /* ipconfigFREERTOS_PLUS_NABTO */
#if ipconfigUSE_NETWORK_EVENT_HOOK == 1
{
vApplicationIPNetworkEventHook( eNetworkUp );
}
#endif
/* Static configuration is being used, so the network is now up. */
#if ipconfigFREERTOS_PLUS_NABTO == 1
{
vStartNabtoTask();
}
#endif /* ipconfigFREERTOS_PLUS_NABTO */
/* Close socket to ensure packets don't queue on it. */
FreeRTOS_closesocket( xDHCPSocket );
xDHCPSocket = NULL;
@ -315,18 +318,19 @@ void vDHCPProcess( portBASE_TYPE xReset, xMACAddress_t *pxMACAddress, uint32_t *
*pulIPAddress = ulOfferedIPAddress;
eDHCPState = eLeasedAddress;
#if ipconfigFREERTOS_PLUS_NABTO == 1
{
vStartNabtoTask();
}
#endif /* ipconfigFREERTOS_PLUS_NABTO */
#if ipconfigUSE_NETWORK_EVENT_HOOK == 1
{
vApplicationIPNetworkEventHook( eNetworkUp );
}
#endif
/* Static configuration is being used, so the network is now up. */
#if ipconfigFREERTOS_PLUS_NABTO == 1
{
vStartNabtoTask();
}
#endif /* ipconfigFREERTOS_PLUS_NABTO */
/* Close socket to ensure packets don't queue on it. */
FreeRTOS_closesocket( xDHCPSocket );
xDHCPSocket = NULL;