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
2327dec3
Commit
2327dec3
authored
17 years ago
by
pug
Browse files
Options
Downloads
Patches
Plain Diff
fixed documentation for mcLoop
parent
9bb86867
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Socket/Protocols/INet/MulticastSocketProtocol.hh
+4
-3
4 additions, 3 deletions
Socket/Protocols/INet/MulticastSocketProtocol.hh
with
4 additions
and
3 deletions
Socket/Protocols/INet/MulticastSocketProtocol.hh
+
4
−
3
View file @
2327dec3
...
...
@@ -45,14 +45,14 @@ namespace senf {
:
public
virtual
SocketProtocol
{
public:
void
broadcastEnabled
(
bool
v
)
const
;
///< Enable broadcast send/receive
void
broadcastEnabled
(
bool
v
);
///< Enable broadcast send/receive
/**< If this option is enabled, broadcast UDP messages will
be received on the socket and the socket will be
allowed to send out broadcast UDP messages
\param[in] v \c true to enable broadcast send/receive,
\c false to disable */
bool
broadcastEnabled
()
const
;
///< Get broadcast send/receive state
bool
broadcastEnabled
()
;
///< Get broadcast send/receive state
/**< \returns Current state of the broadcastEnabled()
option. */
...
...
@@ -60,8 +60,9 @@ namespace senf {
unsigned
mcTTL
()
const
;
///< Return current multicast TTL
void
mcTTL
(
unsigned
value
)
const
;
///< Set multicast TTL
bool
mcLoop
()
const
;
///< Return current multicast loopback state
bool
mcLoop
()
const
;
///< Return current multicast loopback state
.
void
mcLoop
(
bool
value
)
const
;
///< Set multicast loopback state
/**< If set to false via \c mcLoop(value) multicast messages will not be looped back to local sockets. Default value is \c true (1). */
void
mcIface
(
std
::
string
const
&
iface
=
std
::
string
())
const
;
///< Set multicast send interface of the socket
...
...
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