-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #1153, add os-specifc socket flag function
Adds the capability for the bsd sockets implementation to use a function provided by the OS layer to set the socket flags. This allows VxWorks to have an alternative implementation that uses ioctl rather than fcntl to set the flags.
- Loading branch information
Showing
18 changed files
with
344 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* NASA Docket No. GSC-18,370-1, and identified as "Operating System Abstraction Layer" | ||
* | ||
* Copyright (c) 2019 United States Government as represented by | ||
* the Administrator of the National Aeronautics and Space Administration. | ||
* All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/** | ||
* \file os-impl-sockets.c | ||
* \ingroup vxworks | ||
* \author joseph.p.hickey@nasa.gov | ||
* | ||
*/ | ||
|
||
/**************************************************************************************** | ||
INCLUDE FILES | ||
***************************************************************************************/ | ||
|
||
#include "os-vxworks.h" | ||
#include "os-shared-idmap.h" | ||
#include "os-impl-io.h" | ||
#include "os-impl-sockets.h" | ||
|
||
/**************************************************************************************** | ||
INITIALIZATION FUNCTION | ||
***************************************************************************************/ | ||
|
||
/*---------------------------------------------------------------- | ||
* | ||
* Function: OS_VxWorks_ModuleAPI_Impl_Init | ||
* | ||
* Purpose: Local helper routine, not part of OSAL API. | ||
* | ||
*-----------------------------------------------------------------*/ | ||
void OS_VxWorks_SetSocketFlags_Impl(const OS_object_token_t *token) | ||
{ | ||
OS_impl_file_internal_record_t *impl; | ||
int os_flags; | ||
|
||
impl = OS_OBJECT_TABLE_GET(OS_impl_filehandle_table, *token); | ||
|
||
/* Use ioctl/FIONBIO on this platform, rather than standard fcntl() */ | ||
os_flags = 1; | ||
if (ioctl(impl->fd, FIONBIO, &os_flags) == -1) | ||
{ | ||
/* No recourse if ioctl fails - just report the error and move on. */ | ||
OS_DEBUG("ioctl(FIONBIO): %s\n", strerror(errno)); | ||
} | ||
|
||
impl->selectable = true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ set(VXWORKS_MODULE_LIST | |
network | ||
queues | ||
shell | ||
sockets | ||
symtab | ||
tasks | ||
timebase | ||
|
Oops, something went wrong.