Changeset 5e962ad in mainline
- Timestamp:
- 2017-09-21T16:13:41Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 207d5da
- Parents:
- 4c363fa2
- Location:
- uspace
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/inet/inet.c
r4c363fa2 r5e962ad 38 38 #include <inet/addr.h> 39 39 #include <inet/inetcfg.h> 40 #include <io/table.h> 40 41 #include <loc.h> 41 42 #include <stdio.h> … … 48 49 static void print_syntax(void) 49 50 { 50 printf(" syntax:\n");51 printf(" \t" NAME " create <addr>/<width> <link-name> <addr-name>\n");52 printf(" \t" NAME " delete <link-name> <addr-name>\n");53 printf(" \t" NAME " add-sr <dest-addr>/<width> <router-addr> <route-name>\n");54 printf(" \t" NAME " del-sr <route-name>\n");51 printf("Syntax:\n"); 52 printf(" %s create <addr>/<width> <link-name> <addr-name>\n", NAME); 53 printf(" %s delete <link-name> <addr-name>\n", NAME); 54 printf(" %s add-sr <dest-addr>/<width> <router-addr> <route-name>\n", NAME); 55 printf(" %s del-sr <route-name>\n", NAME); 55 56 } 56 57 … … 242 243 inet_addr_info_t ainfo; 243 244 inet_link_info_t linfo; 245 table_t *table = NULL; 244 246 245 247 size_t count; 246 248 size_t i; 247 249 int rc; 248 char *astr; 250 char *astr = NULL; 251 252 ainfo.name = NULL; 253 linfo.name = NULL; 249 254 250 255 rc = inetcfg_get_addr_list(&addr_list, &count); … … 254 259 } 255 260 256 printf("Configured addresses:\n"); 257 if (count > 0) 258 printf(" [Addr/Width] [Link-Name] [Addr-Name] [Def-MTU]\n"); 259 ainfo.name = NULL; 260 linfo.name = NULL; 261 astr = NULL; 261 rc = table_create(&table); 262 if (rc != EOK) { 263 printf("Memory allocation failed.\n"); 264 goto out; 265 } 266 267 table_set_margin_left(table, 4); 268 269 printf("Configured addresses:\n\n"); 270 271 table_header_row(table); 272 table_printf(table, "Addr/Width\t" "Link-Name\t" "Addr-Name\t" 273 "Def-MTU\n"); 262 274 263 275 for (i = 0; i < count; i++) { … … 285 297 } 286 298 287 printf(" %s %s %s %zu\n", astr, linfo.name,288 ainfo.name, linfo.def_mtu);299 table_printf(table, "%s\t" "%s\t" "%s\t" "%zu\n", astr, 300 linfo.name, ainfo.name, linfo.def_mtu); 289 301 290 302 free(ainfo.name); … … 297 309 } 298 310 299 if (count == 0) 300 printf(" None\n"); 311 if (count == 0) { 312 printf("None\n"); 313 } else { 314 rc = table_print_out(table, stdout); 315 if (rc != EOK) { 316 printf("Error printing table.\n"); 317 goto out; 318 } 319 } 320 321 rc = EOK; 301 322 out: 323 table_destroy(table); 302 324 if (ainfo.name != NULL) 303 325 free(ainfo.name); … … 309 331 free(addr_list); 310 332 311 return EOK;333 return rc; 312 334 } 313 335 314 336 static int link_list(void) 315 337 { 316 sysarg_t *link_list ;338 sysarg_t *link_list = NULL; 317 339 inet_link_info_t linfo; 340 table_t *table = NULL; 318 341 319 342 size_t count; … … 327 350 } 328 351 329 printf("IP links:\n"); 330 if (count > 0) 331 printf(" [Link-layer Address] [Link-Name] [Def-MTU]\n"); 352 rc = table_create(&table); 353 if (rc != EOK) { 354 printf("Memory allocation failed.\n"); 355 goto out; 356 } 357 358 table_set_margin_left(table, 4); 359 360 printf("IP links:\n\n"); 361 table_header_row(table); 362 table_printf(table, "Link-layer Address\t" "Link-Name\t" "Def-MTU\n"); 332 363 333 364 for (i = 0; i < count; i++) { … … 339 370 } 340 371 341 printf(" %02x:%02x:%02x:%02x:%02x:%02x %s %zu\n", 372 table_printf(table, "%02x:%02x:%02x:%02x:%02x:%02x\t" 373 "%s\t" "%zu\n", 342 374 linfo.mac_addr[0], linfo.mac_addr[1], 343 375 linfo.mac_addr[2], linfo.mac_addr[3], … … 350 382 } 351 383 352 if (count == 0) 353 printf(" None\n"); 354 384 if (count == 0) { 385 printf("None\n"); 386 } else { 387 rc = table_print_out(table, stdout); 388 if (rc != EOK) { 389 printf("Error printing table.\n"); 390 goto out; 391 } 392 } 393 394 rc = EOK; 395 out: 396 table_destroy(table); 355 397 free(link_list); 356 398 357 return EOK;399 return rc; 358 400 } 359 401 360 402 static int sroute_list(void) 361 403 { 362 sysarg_t *sroute_list ;404 sysarg_t *sroute_list = NULL; 363 405 inet_sroute_info_t srinfo; 406 table_t *table = NULL; 364 407 365 408 size_t count; 366 409 size_t i; 367 410 int rc; 368 char *dest_str; 369 char *router_str; 411 char *dest_str = NULL; 412 char *router_str = NULL; 413 414 srinfo.name = NULL; 370 415 371 416 rc = inetcfg_get_sroute_list(&sroute_list, &count); … … 375 420 } 376 421 377 printf("Static routes:\n"); 378 if (count > 0) 379 printf(" [Dest/Width] [Router-Addr] [Route-Name]\n"); 380 381 srinfo.name = NULL; 382 dest_str = NULL; 383 router_str = NULL; 422 rc = table_create(&table); 423 if (rc != EOK) { 424 printf("Memory allocation failed.\n"); 425 goto out; 426 } 427 428 table_set_margin_left(table, 4); 429 430 printf("Static routes:\n\n"); 431 table_header_row(table); 432 table_printf(table, "Dest/Width\t" "Router-Addr\t" "Route-Name\n"); 384 433 385 434 for (i = 0; i < count; i++) { … … 406 455 } 407 456 408 printf(" %s %s %s\n", dest_str, router_str, srinfo.name); 457 table_printf(table, "%s\t" "%s\t" "%s\n", dest_str, router_str, 458 srinfo.name); 409 459 410 460 free(srinfo.name); … … 417 467 } 418 468 419 if (count == 0) 420 printf(" None\n"); 469 if (count == 0) { 470 printf("None\n"); 471 } else { 472 rc = table_print_out(table, stdout); 473 if (rc != EOK) { 474 printf("Error printing table.\n"); 475 goto out; 476 } 477 } 478 479 rc = EOK; 421 480 out: 481 table_destroy(table); 422 482 if (srinfo.name != NULL) 423 483 free(srinfo.name); … … 429 489 free(sroute_list); 430 490 431 return EOK;491 return rc; 432 492 } 433 493 -
uspace/lib/c/Makefile
r4c363fa2 r5e962ad 126 126 generic/io/con_srv.c \ 127 127 generic/io/console.c \ 128 generic/io/table.c \ 128 129 generic/io/visualizer.c \ 129 130 generic/io/window.c \ … … 183 184 test/fibril/timer.c \ 184 185 test/main.c \ 186 test/io/table.c \ 185 187 test/odict.c \ 186 188 test/qsort.c \ -
uspace/lib/c/test/main.c
r4c363fa2 r5e962ad 37 37 PCUT_IMPORT(sprintf); 38 38 PCUT_IMPORT(str); 39 PCUT_IMPORT(table); 39 40 40 41 PCUT_MAIN()
Note:
See TracChangeset
for help on using the changeset viewer.