Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
864c87e6
Commit
864c87e6
authored
Feb 19, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
net/SocketAddress: add method GetLocalPath()
parent
1a516cf3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
2 deletions
+32
-2
AllocatedSocketAddress.hxx
src/net/AllocatedSocketAddress.hxx
+8
-0
SocketAddress.cxx
src/net/SocketAddress.cxx
+16
-1
SocketAddress.hxx
src/net/SocketAddress.hxx
+8
-1
No files found.
src/net/AllocatedSocketAddress.hxx
View file @
864c87e6
...
...
@@ -147,6 +147,14 @@ public:
StringView
GetLocalRaw
()
const
noexcept
;
/**
* @see SocketAddress::GetLocalPath()
*/
gcc_pure
const
char
*
GetLocalPath
()
const
noexcept
{
return
((
SocketAddress
)
*
this
).
GetLocalPath
();
}
/**
* Make this a "local" address (UNIX domain socket). If the path
* begins with a '@', then the rest specifies an "abstract" local
* address.
...
...
src/net/SocketAddress.cxx
View file @
864c87e6
/*
* Copyright
(C) 2012-2017
Max Kellermann <max.kellermann@gmail.com>
* Copyright
2012-2019
Max Kellermann <max.kellermann@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
...
...
@@ -73,6 +73,21 @@ SocketAddress::GetLocalRaw() const noexcept
return
{
path
,
size
-
header_size
};
}
const
char
*
SocketAddress
::
GetLocalPath
()
const
noexcept
{
const
auto
raw
=
GetLocalRaw
();
return
!
raw
.
empty
()
&&
/* must be an absolute path */
raw
.
front
()
==
'/'
&&
/* must be null-terminated */
raw
.
back
()
==
0
&&
/* there must not be any other null byte */
memchr
(
raw
.
data
,
0
,
raw
.
size
-
1
)
==
nullptr
?
raw
.
data
:
nullptr
;
}
#endif
#ifdef HAVE_TCP
...
...
src/net/SocketAddress.hxx
View file @
864c87e6
/*
* Copyright
(C) 2012-2017
Max Kellermann <max.kellermann@gmail.com>
* Copyright
2012-2019
Max Kellermann <max.kellermann@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
...
...
@@ -106,6 +106,13 @@ public:
*/
gcc_pure
StringView
GetLocalRaw
()
const
noexcept
;
/**
* Returns the local socket path or nullptr if not applicable
* (or if the path is corrupt).
*/
gcc_pure
const
char
*
GetLocalPath
()
const
noexcept
;
#endif
#ifdef HAVE_TCP
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment