aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/srv6/sr_localsid.c
AgeCommit message (Expand)AuthorFilesLines
2018-10-23c11 safe string handling supportDave Barach1-3/+3
2018-07-12srv6: fix pointers in quad loopsFrancois Clad1-6/+6
2018-07-11avoid using thread local storage for thread indexDamjan Marion1-2/+2
2018-06-19Fixed bugs in SRv6 APIPablo Camarillo1-2/+1
2018-03-14srv6: minor CLI modificationsFrancois Clad1-2/+2
2018-02-27SRv6: API uses table-IDs not FIB indiciesNeale Ranns1-3/+3
2017-08-22SRv6 testsKris Michielsen1-29/+196
2017-06-07VPP-872 and End.T function for SRv6Pablo Camarillo1-98/+93
2017-05-05First commit SR MPLSPablo Camarillo1-0/+1492
OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ option version = "1.0.0"; /** \brief Enable/disable IPv6 ND address autoconfiguration and setting up default routes @param client_index - opaque cookie to identify the sender @param context - sender context, to match reply w/ request @param sw_if_index - interface to enable the autoconfigutation on @param enable - 1 to enable address autoconfiguration, 0 to disable @param install_default_routes - 1 to enable installing defaut routes, 0 to disable installing defaut routes, the value is ignored (and taken as 0) when enable param is set to 0 */ autoreply define ip6_nd_address_autoconfig { u32 client_index; u32 context; u32 sw_if_index; u8 enable; u8 install_default_routes; }; /* * Local Variables: * eval: (c-set-style "gnu") * End: */