-
-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1123 move mdns code to server, separate it from socket creation
git-svn-id: https://xpra.org/svn/Xpra/trunk@22683 3bb7dfac-3a0b-4e04-842a-767bc560f471
- Loading branch information
Showing
4 changed files
with
99 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# This file is part of Xpra. | ||
# Copyright (C) 2017-2018 Antoine Martin <[email protected]> | ||
# Copyright (C) 2017-2019 Antoine Martin <[email protected]> | ||
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any | ||
# later version. See the file COPYING for details. | ||
|
||
|
@@ -12,10 +12,6 @@ | |
from xpra.scripts.config import InitException | ||
|
||
|
||
def add_cleanup(fn): | ||
from xpra.scripts.server import add_cleanup as ac | ||
ac(fn) | ||
|
||
def sh_quotemeta(s): | ||
return "'" + s.replace("'", "'\\''") + "'" | ||
|
||
|
Oops, something went wrong.