diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2019-03-30 14:06:16 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2019-03-30 16:51:06 +0000 |
commit | 81a27e26aab2fed410310c3cda46090b8a2c8a50 (patch) | |
tree | 0a169f24afec0bc5bebbbd1e5c0921c64912641b /common/UnitHTTP.hpp | |
parent | d832fb3c9d1a89287daaf5cd082a594061a3283b (diff) |
Switch local prisoner sockets to abstract UDS
Unix Domain Sockets are inaddressable remotely, and more efficient,
as well as allowing future SCM_CREDENTIALS / SCM_RIGHTS.
Change-Id: Ia2472260f75feb43e9022cdfa0fe005ccd489454
Diffstat (limited to 'common/UnitHTTP.hpp')
-rw-r--r-- | common/UnitHTTP.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/UnitHTTP.hpp b/common/UnitHTTP.hpp index d87ce8e3f..2eb1c629f 100644 --- a/common/UnitHTTP.hpp +++ b/common/UnitHTTP.hpp @@ -74,7 +74,7 @@ public: UnitHTTPServerRequest(UnitHTTPServerResponse& inResponse, const std::string& uri) : _response(inResponse), - _serverAddress(MasterPortNumber) + _serverAddress(9981) // FIXME: Unix Sockets now ... { setURI(uri); } |