Skip to content

Commit

Permalink
Fixing spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch committed Oct 12, 2023
1 parent 3fd640a commit 9d1accd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Drv/Ip/IpSocket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ enum SocketIpStatus {
};

/**
* \brief Helper base-class for setting up Berkley sockets
* \brief Helper base-class for setting up Berkeley sockets
*
* Certain IP headers have conflicting definitions with the m_data member of various types in fprime. TcpHelper
* separates the ip setup from the incoming Fw::Buffer in the primary component class preventing this collision.
Expand Down
2 changes: 1 addition & 1 deletion Drv/Ip/TcpClientSocket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace Drv {
/**
* \brief Helper for setting up Tcp using Berkley sockets as a client
* \brief Helper for setting up Tcp using Berkeley sockets as a client
*
* Certain IP headers have conflicting definitions with the m_data member of various types in fprime. TcpClientSocket
* separates the ip setup from the incoming Fw::Buffer in the primary component class preventing this collision.
Expand Down
2 changes: 1 addition & 1 deletion Drv/Ip/TcpServerSocket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace Drv {
/**
* \brief Helper for setting up Tcp using Berkley sockets as a server
* \brief Helper for setting up Tcp using Berkeley sockets as a server
*
* Certain IP headers have conflicting definitions with the m_data member of various types in fprime. TcpServerSocket
* separates the ip setup from the incoming Fw::Buffer in the primary component class preventing this collision.
Expand Down
2 changes: 1 addition & 1 deletion Drv/Ip/UdpSocket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace Drv {
struct SocketState;

/**
* \brief Helper for setting up Udp using Berkley sockets as a client
* \brief Helper for setting up Udp using Berkeley sockets as a client
*
* Certain IP headers have conflicting definitions with the m_data member of various types in fprime. UdpSocket
* separates the ip setup from the incoming Fw::Buffer in the primary component class preventing this collision.
Expand Down
4 changes: 2 additions & 2 deletions Drv/Ip/docs/sdd.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
\page DrvIp Drv::Ip IPv4 Socket Implementations
# Drv::Ip IPv4 Socket Implementations

This package contains utility classes to help interact with standard IPv4 (Berkley) sockets. These classes implement the
This package contains utility classes to help interact with standard IPv4 (Berkeley) sockets. These classes implement the
core features of IPv4. This includes a tcp server socket (Drv::TcpServerSocket), a tcp client socket (Drv::TcpClient)
and a udp socket (Drv::UdpSocket). These are not F´ components, but an F´ component wrapper of each exists:
Drv::TcpClientComponent, Drv::TcpServerComponent, and Drv::UdpComponent.
Expand All @@ -28,7 +28,7 @@ Each of these classes is explained in more detail below.

The Drv::IpSocket class represents the external interface to IPv4 socket components. This class provides a top-level
interface to IPv4 sockets for connecting, disconnecting, sending, and receiving using the socket. This implements the
IPv4 socket protocol as provided by the unix (Berkley) sockets implementation.
IPv4 socket protocol as provided by the unix (Berkeley) sockets implementation.

High-level interfaces are provided for the standard functions of: `open`, `close`, `send`, and `recv`. FramingProtocol and
implementation specific functionality are implemented in derived classes by implementing the pure virtual functions:
Expand Down

0 comments on commit 9d1accd

Please sign in to comment.