Add dropbox_port_t support
The dropbox application has a feature called "LAN Sync" which works on TCP & UDP port 17500. Marking this port as dropbox_port_t (instead of the currently default unreserved_port_t) allows for more fine-grained access control to this resource. Signed-off-by: Sven Vermeulen <sven.vermeulen@siphos.be>
This commit is contained in:
parent
b2b750279a
commit
c0bd1fbe5f
|
@ -120,6 +120,7 @@ network_port(dhcpd, udp,67,s0, udp,547,s0, tcp, 547,s0, udp,548,s0, tcp, 548,s0,
|
|||
network_port(dict, tcp,2628,s0)
|
||||
network_port(distccd, tcp,3632,s0)
|
||||
network_port(dns, tcp,53,s0, udp,53,s0)
|
||||
network_port(dropbox, tcp,17500,s0, udp,17500,s0)
|
||||
network_port(efs, tcp,520,s0)
|
||||
network_port(embrace_dp_c, tcp,3198,s0, udp,3198,s0)
|
||||
network_port(epmap, tcp,135,s0, udp,135,s0)
|
||||
|
|
Loading…
Reference in New Issue