Skip to content

Commit

Permalink
adding netmask support
Browse files Browse the repository at this point in the history
  • Loading branch information
titpetric committed Sep 10, 2010
1 parent 82bc7ad commit 8cc5986
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions conf/example-locationinfo.xml
Expand Up @@ -3,10 +3,15 @@
<!-- Location: path = stream name or folder (for vod), restrict = [all|none] -->
<Location path="def/" restrict="none"/>
<Location path="slovenia/" restrict="all">
<!-- Except: country = http://www.maxmind.com/app/iso3166 -->
<Except type="country">SI</Except>
<!-- IP exception -->
<Except type="ip">127.0.0.1</Except>
<!-- Netmask exceptions: CIDR -->
<Except type="netmask">10.0.0.0/8</Except>
<Except type="netmask">172.16.0.0/12</Except>
<!-- Netmask exceptions: subnet -->
<Except type="netmask">192.168.0.0/255.255.0.0</Except>
<!-- Except: country = http://www.maxmind.com/app/iso3166 -->
<Except type="country">SI</Except>
</Location>
<Location path="usa/" restrict="all">
<Except type="country">US</Except>
Expand Down

0 comments on commit 8cc5986

Please sign in to comment.