Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
senf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wiback
senf
Commits
3f88cba3
Commit
3f88cba3
authored
16 years ago
by
tho
Browse files
Options
Downloads
Patches
Plain Diff
minor documentation fix
parent
6adcc065
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
PPI/Connectors.hh
+16
-14
16 additions, 14 deletions
PPI/Connectors.hh
Socket/Protocols/DVB/DVBFrontendHandle.cc
+0
-1
0 additions, 1 deletion
Socket/Protocols/DVB/DVBFrontendHandle.cc
with
16 additions
and
15 deletions
PPI/Connectors.hh
+
16
−
14
View file @
3f88cba3
...
...
@@ -502,9 +502,10 @@ namespace connector {
\tparam PacketType Type of packet to read. Defaults to senf::Packet
The ActiveInput connector template reads data actively from a connected module. This class
is completely implemented via it's base-class, GenericActiveInput, the only difference is
that read packets are returned as \a PacketType instead of generic senf::Packet references.
The %ActiveInput %connector template reads data actively from a connected %module. This
class is completely implemented via it's base-class, GenericActiveInput, the only
difference is that read packets are returned as \a PacketType instead of generic
senf::Packet references.
\see GenericActiveInput \n
senf::ppi::connector
...
...
@@ -514,7 +515,7 @@ namespace connector {
{
public:
PacketType
operator
()();
///< Read packet
/**< \throws std::bad_cast, if the connector receives a
/**< \throws std::bad_cast, if the
%
connector receives a
Packet which is not of type \a PacketType.
\returns newly read packet reference. */
PacketType
read
();
///< Alias for operator()
...
...
@@ -524,9 +525,9 @@ namespace connector {
\tparam PacketType Type of packet to read. Defaults to senf::Packet
The PassiveInput connector template receives packets sent to it from a connected
module. This class is completely implemented via it's base-class, GenericPassiveInput,
the
only difference is that read packets are returned as \a PacketType instead of generic
The
%
PassiveInput
%
connector template receives packets sent to it from a connected
%
module. This class is completely implemented via it's base-class, GenericPassiveInput,
the
only difference is that read packets are returned as \a PacketType instead of generic
senf::Packet references.
\see GenericPassiveInput \n
...
...
@@ -537,7 +538,7 @@ namespace connector {
{
public:
PacketType
operator
()();
///< Read packet
/**< \throws std::bad_cast, if the connector receives a
/**< \throws std::bad_cast, if the
%
connector receives a
Packet which is not of type \a PacketType.
\returns newly read packet reference. */
PacketType
read
();
///< Alias for operator()
...
...
@@ -547,9 +548,9 @@ namespace connector {
\tparam PacketType Type of packet to send. Defaults to senf::Packet
The ActiveOutput connector template sends data actively to a connected module. This
class is
completely implemented via it's base-class, GenericActiveOutput, the only
difference is that
it only sends packets of type \a PacketType.
The
%
ActiveOutput
%
connector template sends data actively to a connected
%
module. This
class is
completely implemented via it's base-class, GenericActiveOutput, the only
difference is that
it only sends packets of type \a PacketType.
\see GenericActiveOutput \n
senf::ppi::connector
...
...
@@ -566,9 +567,10 @@ namespace connector {
\tparam PacketType Type of packet to send. Defaults to senf::Packet
The PassiveOutput connector template provides data passively to a connected module whenever
signaled. This class is completely implemented via it's base-class, GenericPassiveOutput, the
only difference is that it only sends packets of type \a PacketType.
The %PassiveOutput %connector template provides data passively to a connected %module
whenever signaled. This class is completely implemented via it's base-class,
GenericPassiveOutput, the only difference is that it only sends packets of type
\a PacketType.
\see GenericPassiveOutput \n
senf::ppi::connector
...
...
This diff is collapsed.
Click to expand it.
Socket/Protocols/DVB/DVBFrontendHandle.cc
+
0
−
1
View file @
3f88cba3
...
...
@@ -48,7 +48,6 @@ prefix_ void senf::DVBFrontendSocketProtocol::init_client(uint8_t adapter, boost
int
f
=
open
(
devFrontend
.
c_str
(),
O_RDONLY
|
O_NONBLOCK
);
if
(
f
<
0
)
SENF_THROW_SYSTEM_EXCEPTION
(
""
)
<<
"Could not open frontend device of DVB adapter "
<<
devFrontend
<<
"."
;
fd
(
f
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment