-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
289 additions
and
40 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
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,47 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
/** | ||
* \brief Stubs for arpa/inet.h | ||
* \ingroup ut-stubs | ||
*/ | ||
#include <arpa/inet.h> | ||
#include "utstubs.h" | ||
#include <OCS_arpa_inet.h> | ||
|
||
const char *OCS_inet_ntop(int af, const void *cp, char *buf, size_t len) | ||
{ | ||
int32 Status; | ||
|
||
Status = UT_DEFAULT_IMPL(OCS_inet_ntop); | ||
|
||
if (Status == 0) | ||
{ | ||
/* "nominal" response */ | ||
return inet_ntop(af, cp, buf, len); | ||
} | ||
|
||
return (char *)0; | ||
} | ||
|
||
int OCS_inet_pton(int af, const char *cp, void *buf) | ||
{ | ||
return UT_DEFAULT_IMPL(OCS_inet_pton); | ||
} |
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,46 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
/** | ||
* \brief Stubs for netinet/in.h | ||
* \ingroup ut-stubs | ||
*/ | ||
#include "utstubs.h" | ||
#include <OCS_arpa_inet.h> | ||
|
||
uint16_t OCS_htons(uint16_t hostshort) | ||
{ | ||
return UT_DEFAULT_IMPL(OCS_htons); | ||
} | ||
|
||
uint16_t OCS_ntohs(uint16_t netshort) | ||
{ | ||
return UT_DEFAULT_IMPL(OCS_ntohs); | ||
} | ||
|
||
uint32_t OCS_htonl(uint32_t hostlong) | ||
{ | ||
return UT_DEFAULT_IMPL(OCS_htonl); | ||
} | ||
|
||
uint32_t OCS_ntohl(uint32_t netlong) | ||
{ | ||
return UT_DEFAULT_IMPL(OCS_ntohl); | ||
} |
File renamed without changes.
Oops, something went wrong.