Helper functions for sockets. More...
Go to the source code of this file.
Functions | |
Socket * | socketAllocate (uint_t type, uint_t protocol) |
Allocate a socket. More... | |
void | socketRegisterEvents (Socket *socket, OsEvent *event, uint_t eventMask) |
Subscribe to the specified socket events. More... | |
void | socketUnregisterEvents (Socket *socket) |
Unsubscribe previously registered events. More... | |
uint_t | socketGetEvents (Socket *socket) |
Retrieve event flags for a specified socket. More... | |
Detailed Description
Helper functions for sockets.
License
SPDX-License-Identifier: GPL-2.0-or-later
Copyright (C) 2010-2023 Oryx Embedded SARL. All rights reserved.
This file is part of CycloneTCP Open.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- Version
- 2.2.4
Definition in file socket_misc.h.
Function Documentation
◆ socketAllocate()
Allocate a socket.
- Parameters
-
[in] type Type specification for the new socket [in] protocol Protocol to be used
- Returns
- Handle referencing the new socket
Definition at line 53 of file socket_misc.c.
◆ socketGetEvents()
Retrieve event flags for a specified socket.
- Parameters
-
[in] socket Handle that identifies a socket
- Returns
- Logic OR of events in the signaled state
Definition at line 273 of file socket_misc.c.
◆ socketRegisterEvents()
Subscribe to the specified socket events.
- Parameters
-
[in] socket Handle that identifies a socket [in] event Event object used to receive notifications [in] eventMask Logic OR of the requested socket events
Definition at line 195 of file socket_misc.c.
◆ socketUnregisterEvents()
void socketUnregisterEvents | ( | Socket * | socket | ) |
Unsubscribe previously registered events.
- Parameters
-
[in] socket Handle that identifies a socket
Definition at line 250 of file socket_misc.c.