@@ -372,11 +372,11 @@ static int32_t prvSendTo_ActualSend( const FreeRTOS_Socket_t * pxSocket,
372372#endif
373373
374374#if ( ipconfigSUPPORT_IP_MULTICAST != 0 )
375- static BaseType_t prvSetMulticastSocketOption ( Socket_t xSocket ,
376- int32_t lLevel ,
377- int32_t lOptionName ,
378- const void * pvOptionValue ,
379- size_t uxOptionLength );
375+ static BaseType_t prvSetMulticastSocketOption ( Socket_t xSocket ,
376+ int32_t lLevel ,
377+ int32_t lOptionName ,
378+ const void * pvOptionValue ,
379+ size_t uxOptionLength );
380380#endif /* ( ipconfigSUPPORT_IP_MULTICAST != 0 ) */
381381
382382/*-----------------------------------------------------------*/
@@ -6328,32 +6328,33 @@ void * pvSocketGetSocketID( const ConstSocket_t xSocket )
63286328 }
63296329
63306330 #endif /* ipconfigSUPPORT_SELECT_FUNCTION */
6331-
6331+
63326332#endif /* 0 */
63336333
63346334#if ( ipconfigSUPPORT_IP_MULTICAST != 0 )
6335- /**
6336- * @brief Set the multicast-specific socket options for the given socket.
6337- * This is an internal function that should only get called from
6338- * FreeRTOS_setsockopt() in an attempt to keep the FreeRTOS_setsockopt()
6339- * function clean.
6340- *
6341- * @param[in] xSocket: The socket for which the options are to be set.
6342- * @param[in] lLevel: Not used. Parameter is used to maintain the Berkeley sockets
6343- * standard.
6344- * @param[in] lOptionName: The name of the option to be set.
6345- * @param[in] pvOptionValue: The value of the option to be set.
6346- * @param[in] uxOptionLength: Not used. Parameter is used to maintain the Berkeley
6347- * sockets standard.
6348- *
6349- * @return If the option can be set with the given value, then 0 is returned. Else,
6350- * an error code is returned.
6351- */
6335+
6336+ /**
6337+ * @brief Set the multicast-specific socket options for the given socket.
6338+ * This is an internal function that should only get called from
6339+ * FreeRTOS_setsockopt() in an attempt to keep the FreeRTOS_setsockopt()
6340+ * function clean.
6341+ *
6342+ * @param[in] xSocket: The socket for which the options are to be set.
6343+ * @param[in] lLevel: Not used. Parameter is used to maintain the Berkeley sockets
6344+ * standard.
6345+ * @param[in] lOptionName: The name of the option to be set.
6346+ * @param[in] pvOptionValue: The value of the option to be set.
6347+ * @param[in] uxOptionLength: Not used. Parameter is used to maintain the Berkeley
6348+ * sockets standard.
6349+ *
6350+ * @return If the option can be set with the given value, then 0 is returned. Else,
6351+ * an error code is returned.
6352+ */
63526353 static BaseType_t prvSetMulticastSocketOption ( Socket_t xSocket ,
6353- int32_t lLevel ,
6354- int32_t lOptionName ,
6355- const void * pvOptionValue ,
6356- size_t uxOptionLength )
6354+ int32_t lLevel ,
6355+ int32_t lOptionName ,
6356+ const void * pvOptionValue ,
6357+ size_t uxOptionLength )
63576358 {
63586359 BaseType_t xReturn = - pdFREERTOS_ERRNO_EINVAL ;
63596360 FreeRTOS_Socket_t * pxSocket ;
0 commit comments