OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 Corey Tabaka | 2 * Copyright (c) 2013 Corey Tabaka |
3 * | 3 * |
4 * Permission is hereby granted, free of charge, to any person obtaining | 4 * Permission is hereby granted, free of charge, to any person obtaining |
5 * a copy of this software and associated documentation files | 5 * a copy of this software and associated documentation files |
6 * (the "Software"), to deal in the Software without restriction, | 6 * (the "Software"), to deal in the Software without restriction, |
7 * including without limitation the rights to use, copy, modify, merge, | 7 * including without limitation the rights to use, copy, modify, merge, |
8 * publish, distribute, sublicense, and/or sell copies of the Software, | 8 * publish, distribute, sublicense, and/or sell copies of the Software, |
9 * and to permit persons to whom the Software is furnished to do so, | 9 * and to permit persons to whom the Software is furnished to do so, |
10 * subject to the following conditions: | 10 * subject to the following conditions: |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 ip4_addr3_16(&ip_addr), | 56 ip4_addr3_16(&ip_addr), |
57 ip4_addr4_16(&ip_addr)); | 57 ip4_addr4_16(&ip_addr)); |
58 } | 58 } |
59 } | 59 } |
60 | 60 |
61 out: | 61 out: |
62 return 0; | 62 return 0; |
63 } | 63 } |
64 | 64 |
65 STATIC_COMMAND_START | 65 STATIC_COMMAND_START |
66 { "net", "net toolbox", &net_cmd }, | 66 STATIC_COMMAND("net", "net toolbox", &net_cmd) |
67 STATIC_COMMAND_END(net); | 67 STATIC_COMMAND_END(net); |
68 | 68 |
69 #endif | 69 #endif |
70 | 70 |
OLD | NEW |