summaryrefslogtreecommitdiffstats
path: root/src/plugins/nat/det44
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/nat/det44')
-rw-r--r--src/plugins/nat/det44/det44.api22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/plugins/nat/det44/det44.api b/src/plugins/nat/det44/det44.api
index 818d46a1d5a..f9c38007288 100644
--- a/src/plugins/nat/det44/det44.api
+++ b/src/plugins/nat/det44/det44.api
@@ -311,7 +311,7 @@ autoreply define nat_det_add_del_map {
u8 in_plen;
vl_api_ip4_address_t out_addr;
u8 out_plen;
- option status="deprecated";
+ option deprecated;
};
/** \brief Get outside address and port range from inside address
@@ -323,7 +323,7 @@ define nat_det_forward {
u32 client_index;
u32 context;
vl_api_ip4_address_t in_addr;
- option status="deprecated";
+ option deprecated;
};
/** \brief Get outside address and port range from inside address
@@ -339,7 +339,7 @@ define nat_det_forward_reply {
u16 out_port_lo;
u16 out_port_hi;
vl_api_ip4_address_t out_addr;
- option status="deprecated";
+ option deprecated;
};
/** \brief Get inside address from outside address and port
@@ -353,7 +353,7 @@ define nat_det_reverse {
u32 context;
u16 out_port;
vl_api_ip4_address_t out_addr;
- option status="deprecated";
+ option deprecated;
};
/** \brief Get inside address from outside address and port reply
@@ -365,7 +365,7 @@ define nat_det_reverse_reply {
u32 context;
i32 retval;
vl_api_ip4_address_t in_addr;
- option status="deprecated";
+ option deprecated;
};
/** \brief Dump NAT deterministic mappings
@@ -375,7 +375,7 @@ define nat_det_reverse_reply {
define nat_det_map_dump {
u32 client_index;
u32 context;
- option status="deprecated";
+ option deprecated;
};
/** \brief NAT users response
@@ -397,7 +397,7 @@ define nat_det_map_details {
u32 sharing_ratio;
u16 ports_per_host;
u32 ses_num;
- option status="deprecated";
+ option deprecated;
};
/** \brief Close deterministic NAT session by outside address and port
@@ -415,7 +415,7 @@ autoreply define nat_det_close_session_out {
u16 out_port;
vl_api_ip4_address_t ext_addr;
u16 ext_port;
- option status="deprecated";
+ option deprecated;
};
/** \brief Close deterministic NAT session by inside address and port
@@ -433,7 +433,7 @@ autoreply define nat_det_close_session_in {
u16 in_port;
vl_api_ip4_address_t ext_addr;
u16 ext_port;
- option status="deprecated";
+ option deprecated;
};
/** \brief Dump determinstic NAT sessions
@@ -445,7 +445,7 @@ define nat_det_session_dump {
u32 client_index;
u32 context;
vl_api_ip4_address_t user_addr;
- option status="deprecated";
+ option deprecated;
};
/** \brief Deterministic NAT sessions reply
@@ -465,5 +465,5 @@ define nat_det_session_details {
u16 out_port;
u8 state;
u32 expire;
- option status="deprecated";
+ option deprecated;
};
59'>259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447