summaryrefslogtreecommitdiffhomepage
path: root/talpid_ipc/src/ipc/mod.rs
diff options
context:
space:
mode:
authorErik Larkö <erik@mullvad.net>2017-02-28 11:09:00 +0800
committerErik Larkö <erik@mullvad.net>2017-03-02 21:29:23 +0800
commit2ce1865e915fef63ddc03b92bfe647e63e5bfd49 (patch)
tree6d463984ea06842a5d0c24bb9eabb32011f9fd2c /talpid_ipc/src/ipc/mod.rs
parent27c7a0f0a8b78756a92ec0ff1486164c649c3388 (diff)
downloadmullvadvpn-2ce1865e915fef63ddc03b92bfe647e63e5bfd49.tar.xz
mullvadvpn-2ce1865e915fef63ddc03b92bfe647e63e5bfd49.zip
Remove the port from the public API
Diffstat (limited to 'talpid_ipc/src/ipc/mod.rs')
-rw-r--r--talpid_ipc/src/ipc/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/talpid_ipc/src/ipc/mod.rs b/talpid_ipc/src/ipc/mod.rs
index afb140f4c6..93130ee4ac 100644
--- a/talpid_ipc/src/ipc/mod.rs
+++ b/talpid_ipc/src/ipc/mod.rs
@@ -25,7 +25,7 @@ pub trait IpcServer {
///
/// This function is non-blocking and thus spawns a thread where it
/// listens to messages.
- fn start(self, port: u16, on_message: Box<OnMessage<Self::MessageType>>) -> Result<()>;
+ fn start(self, on_message: Box<OnMessage<Self::MessageType>>) -> Result<()>;
}
error_chain!{