Skip to content

Commit

Permalink
Update copyright in changed MDNS files
Browse files Browse the repository at this point in the history
Change company name from ARM Limited to Pelion.
  • Loading branch information
Arto Kinnunen committed May 14, 2021
1 parent 933c0bb commit acf580f
Show file tree
Hide file tree
Showing 17 changed files with 112 additions and 112 deletions.
2 changes: 1 addition & 1 deletion source/Service_Libs/mdns/fnet/fnet_stack/fnet_config.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**************************************************************************
*
* Copyright (c) 2017, Arm Limited and affiliates.
* Copyright (c) 2017, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
* Copyright 2011-2016 by Andrey Butok. FNET Community.
* Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**************************************************************************
*
* Copyright (c) 2019 Arm Limited and affiliates.
* Copyright (c) 2019, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
* Copyright 2011-2016 by Andrey Butok. FNET Community.
* Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**************************************************************************
*
* Copyright (c) 2019 Arm Limited and affiliates.
* Copyright (c) 2019, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
* Copyright 2011-2016 by Andrey Butok. FNET Community.
* Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**************************************************************************
*
* Copyright (c) 2017, Arm Limited and affiliates.
* Copyright (c) 2017, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
* Copyright 2011-2016 by Andrey Butok. FNET Community.
* Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**************************************************************************
*
* Copyright (c) 2017, Arm Limited and affiliates.
* Copyright (c) 2017, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
* Copyright 2011-2016 by Andrey Butok. FNET Community.
* Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc.
Expand Down
184 changes: 92 additions & 92 deletions source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.c

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**************************************************************************
*
* Copyright (c) 2017, Arm Limited and affiliates.
* Copyright (c) 2017, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
* Copyright 2016 by Andrey Butok. FNET Community.
*
Expand Down Expand Up @@ -71,15 +71,15 @@ struct fnet_mdns_params
};

/**************************************************************************/ /*!
* @brief The mDNS Service structure defining application-specific
* @brief The mDNS Service structure defining application-specific
* service, advertised by the mDNS server.
* @see fnet_mdns_service_register()
******************************************************************************/
typedef struct fnet_mdns_service
{
const char* service_type; /**< @brief Service Type. Null-terminated string. Example "_http._tcp". */
fnet_uint16_t service_port; /**< @brief Service Port number (in network byte order). */
const fnet_uint8_t* (*service_get_txt)(void); /**< @brief Call-back function, which returns a pointer to the service TXT record (null-terminated).
const fnet_uint8_t* (*service_get_txt)(void); /**< @brief Call-back function, which returns a pointer to the service TXT record (null-terminated).
If the service does not provide any TXT record, this parameter must be set to NULL. */
} fnet_mdns_service_t;

Expand Down Expand Up @@ -173,7 +173,7 @@ fnet_mdns_service_desc_t fnet_mdns_service_register(fnet_mdns_desc_t mdns_desc,
******************************************************************************
*
* This function unregisters application service, assigned to the @c service_desc
* descriptor, and stops its advertisement by the mDNS server.
* descriptor, and stops its advertisement by the mDNS server.
*
******************************************************************************/
void fnet_mdns_service_unregister(fnet_mdns_service_desc_t service_desc);
Expand All @@ -189,7 +189,7 @@ void fnet_mdns_service_unregister(fnet_mdns_service_desc_t service_desc);
******************************************************************************
*
* This function sends unsolicited mDNS announcement.@n
* Application may call it when any advertised application-specific parameter
* Application may call it when any advertised application-specific parameter
* has changed (e.g. network interface IP address or service TXT-record content).@n
* RFC 6762: "At any time, if the rdata of any of a host's Multicast DNS records
* changes, the host MUST repeat the Announcing step to
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**************************************************************************
* Copyright (c) 2017, Arm Limited and affiliates.
* Copyright (c) 2017, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
* Copyright 2011-2016 by Andrey Butok. FNET Community.
* Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**************************************************************************
*
* Copyright (c) 2017, Arm Limited and affiliates.
* Copyright (c) 2017, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
* Copyright 2011-2016 by Andrey Butok. FNET Community.
* Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**************************************************************************
*
* Copyright (c) 2017, Arm Limited and affiliates.
* Copyright (c) 2017, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
* Copyright 2011-2016 by Andrey Butok. FNET Community.
* Copyright 2008-2010 by Andrey Butok. Freescale Semiconductor, Inc.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**************************************************************************
*
* Copyright (c) 2017, Arm Limited and affiliates.
* Copyright (c) 2017, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
* Copyright 2011-2016 by Andrey Butok. FNET Community.
* Copyright 2008-2010 by Freescale Semiconductor, Inc.
Expand Down
2 changes: 1 addition & 1 deletion source/Service_Libs/mdns/fnet_user_config.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, Arm Limited and affiliates.
* Copyright (c) 2017, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion source/Service_Libs/mdns/ns_fnet_events.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017-2018, Arm Limited and affiliates.
* Copyright (c) 2017-2018, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion source/Service_Libs/mdns/ns_fnet_events.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, Arm Limited and affiliates.
* Copyright (c) 2017, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion source/Service_Libs/mdns/ns_fnet_port.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017-2019, Arm Limited and affiliates.
* Copyright (c) 2017-2019, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion source/Service_Libs/mdns/ns_fnet_types.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, Arm Limited and affiliates.
* Copyright (c) 2017, Peliond and affiliates.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion source/Service_Libs/mdns/ns_mdns_api.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017-2018, Arm Limited and affiliates.
* Copyright (c) 2017-2018, Pelion and affiliates.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down

0 comments on commit acf580f

Please sign in to comment.