-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
socket related from network_framework_integration branch
- Loading branch information
Showing
8 changed files
with
2,137 additions
and
759 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#ifndef AWS_IO_PRIVATE_SOCKET_H | ||
#define AWS_IO_PRIVATE_SOCKET_H | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#include <aws/io/socket.h> | ||
|
||
int aws_socket_init_poll_based( | ||
struct aws_socket *socket, | ||
struct aws_allocator *alloc, | ||
const struct aws_socket_options *options); | ||
|
||
int aws_socket_init_completion_port_based( | ||
struct aws_socket *socket, | ||
struct aws_allocator *alloc, | ||
const struct aws_socket_options *options); | ||
|
||
#endif /* #ifndef AWS_IO_PRIVATE_SOCKET_H */ |
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
Oops, something went wrong.