mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
9 lines
163 B
C++
9 lines
163 B
C++
|
|
||
|
#include "cpr/unix_socket.h"
|
||
|
|
||
|
namespace cpr {
|
||
|
const char* UnixSocket::GetUnixSocketString() const noexcept {
|
||
|
return unix_socket_.data();
|
||
|
}
|
||
|
} // namespace cpr
|