You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
401 B

  1. # ipset
  2. The ipset library provides C data types for storing sets of IP
  3. addresses, and maps of IP addresses to integers. It supports both
  4. IPv4 and IPv6 addresses. It's implemented using [Binary Decision
  5. Diagrams](http://en.wikipedia.org/wiki/Binary_decision_diagram)
  6. (BDDs), which (we hypothesize) makes it space efficient for large
  7. sets.
  8. Please see the INSTALL file for installation instructions.