summaryrefslogtreecommitdiff
path: root/common/src/nxe_tcp_socket_window_update_notify_set.c
diff options
context:
space:
mode:
authorPProvost <[email protected]>2020-05-11 08:54:23 -0600
committerPProvost <[email protected]>2020-05-11 08:54:23 -0600
commit0c4f784459a7564933ed91bf39f00d12608cf91c (patch)
treecfa743731d1cfb11d83119bf1c8d0d942e8c3c73 /common/src/nxe_tcp_socket_window_update_notify_set.c
Initial commit
Diffstat (limited to 'common/src/nxe_tcp_socket_window_update_notify_set.c')
-rw-r--r--common/src/nxe_tcp_socket_window_update_notify_set.c103
1 files changed, 103 insertions, 0 deletions
diff --git a/common/src/nxe_tcp_socket_window_update_notify_set.c b/common/src/nxe_tcp_socket_window_update_notify_set.c
new file mode 100644
index 00000000..8edd4f5b
--- /dev/null
+++ b/common/src/nxe_tcp_socket_window_update_notify_set.c
@@ -0,0 +1,103 @@
+/**************************************************************************/
+/* */
+/* Copyright (c) Microsoft Corporation. All rights reserved. */
+/* */
+/* This software is licensed under the Microsoft Software License */
+/* Terms for Microsoft Azure RTOS. Full text of the license can be */
+/* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
+/* and in the root directory of this software. */
+/* */
+/**************************************************************************/
+
+
+/**************************************************************************/
+/**************************************************************************/
+/** */
+/** NetX Component */
+/** */
+/** Transmission Control Protocol (TCP) */
+/** */
+/**************************************************************************/
+/**************************************************************************/
+
+#define NX_SOURCE_CODE
+
+
+/* Include necessary system files. */
+
+#include "nx_api.h"
+#include "nx_tcp.h"
+
+/* Bring in externs for caller checking code. */
+NX_CALLER_CHECKING_EXTERNS
+
+
+/**************************************************************************/
+/* */
+/* FUNCTION RELEASE */
+/* */
+/* _nxe_tcp_socket_window_update_notify_set PORTABLE C */
+/* 6.0 */
+/* AUTHOR */
+/* */
+/* Yuxin Zhou, Microsoft Corporation */
+/* */
+/* DESCRIPTION */
+/* */
+/* This function checks for errors in the TCP socket window update */
+/* notify set call. */
+/* */
+/* INPUT */
+/* */
+/* socket_ptr Pointer to TCP socket */
+/* tcp_window_udpate_notify Routine to call when NetX */
+/* receives a window update */
+/* */
+/* OUTPUT */
+/* */
+/* status Completion status */
+/* */
+/* CALLS */
+/* */
+/* _nx_tcp_socket_window_update_notify_set */
+/* Acutal notify set routine. */
+/* */
+/* CALLED BY */
+/* */
+/* Application Code */
+/* */
+/* RELEASE HISTORY */
+/* */
+/* DATE NAME DESCRIPTION */
+/* */
+/* 05-19-2020 Yuxin Zhou Initial Version 6.0 */
+/* */
+/**************************************************************************/
+UINT _nxe_tcp_socket_window_update_notify_set(NX_TCP_SOCKET *socket_ptr,
+ VOID (*tcp_socket_window_update_notify)(NX_TCP_SOCKET *socket_ptr))
+{
+
+ /* Check for invalid input pointers. */
+ if ((socket_ptr == NX_NULL) || (socket_ptr -> nx_tcp_socket_id != NX_TCP_ID))
+ {
+ return(NX_PTR_ERROR);
+ }
+
+ /* Check for invalid input pointers. */
+ if (tcp_socket_window_update_notify == NX_NULL)
+ {
+ return(NX_PTR_ERROR);
+ }
+
+ /* Check to see if TCP is enabled. */
+ if (!(socket_ptr -> nx_tcp_socket_ip_ptr) -> nx_ip_tcp_packet_receive)
+ {
+ return(NX_NOT_ENABLED);
+ }
+
+ /* Check for appropriate caller. */
+ NX_INIT_AND_THREADS_CALLER_CHECKING
+
+ return(_nx_tcp_socket_window_update_notify_set(socket_ptr, tcp_socket_window_update_notify));
+}
+