From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2A86A138CBF for ; Wed, 4 Mar 2015 17:03:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD5B9E08D6; Wed, 4 Mar 2015 17:03:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 55FB9E08DC for ; Wed, 4 Mar 2015 17:03:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4116F3407C6 for ; Wed, 4 Mar 2015 17:03:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 994E713090 for ; Wed, 4 Mar 2015 17:03:04 +0000 (UTC) From: "Sven Vermeulen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Vermeulen" Message-ID: <1425483214.1c9f2085432c1add2a1bfc318f39cd74ef86c2ac.swift@gentoo> Subject: [gentoo-commits] proj/hardened-refpolicy:next commit in: policy/modules/kernel/ X-VCS-Repository: proj/hardened-refpolicy X-VCS-Files: policy/modules/kernel/corenetwork.te.in X-VCS-Directories: policy/modules/kernel/ X-VCS-Committer: swift X-VCS-Committer-Name: Sven Vermeulen X-VCS-Revision: 1c9f2085432c1add2a1bfc318f39cd74ef86c2ac X-VCS-Branch: next Date: Wed, 4 Mar 2015 17:03:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e7769908-447c-46c0-add0-3c2c60ca4a4e X-Archives-Hash: 60f57fbf06fc8402b7f1d1e768aaeced Message-ID: <20150304170304.cnWKyBY-uKZ_EMIAgjqxTINpCqG2bUPcxrh__pQOUBE@z> commit: 1c9f2085432c1add2a1bfc318f39cd74ef86c2ac Author: Sven Vermeulen siphos be> AuthorDate: Wed Mar 4 15:33:34 2015 +0000 Commit: Sven Vermeulen gentoo org> CommitDate: Wed Mar 4 15:33:34 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/hardened-refpolicy.git;a=commit;h=1c9f2085 Allow rtorrent to bind to tcp port 6926 Two fixes in one row: 1. Add in TCP definition for rtorrent port (was already assumed but not formalized) 2. Add in TCP:6926 as an rtorrent_port_t as well X-Gentoo-Bug: 541804 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=541804 policy/modules/kernel/corenetwork.te.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/policy/modules/kernel/corenetwork.te.in b/policy/modules/kernel/corenetwork.te.in index 104e7f5..70f4ee8 100644 --- a/policy/modules/kernel/corenetwork.te.in +++ b/policy/modules/kernel/corenetwork.te.in @@ -236,7 +236,7 @@ network_port(rndc, tcp,953,s0, udp,953,s0) network_port(router, udp,520,s0, udp,521,s0, tcp,521,s0) network_port(rsh, tcp,514,s0) network_port(rsync, tcp,873,s0, udp,873,s0) -network_port(rtorrent, udp, 6881, s0) +network_port(rtorrent, tcp,6881,s0, udp,6881,s0, tcp,6926,s0) network_port(rtsp, tcp,554,s0, udp,554,s0) network_port(rwho, udp,513,s0) network_port(salt, tcp,4505,s0, tcp,4506,s0)