| 130 | }; |
| 131 | |
| 132 | static void sgsnCliHelp(int argc, char **argv, int argi, ostream&os) |
| 133 | { |
| 134 | os << "sgsn sub-commands to control SGSN/GGSN sub-system. Syntax: sgsn subcommand <options...>\n"; |
| 135 | os << "subcommands are:\n"; |
| 136 | struct SgsnSubCmds *gscp; |
| 137 | for (gscp = sgsnSubCmds; gscp->name; gscp++) { |
| 138 | os << "\t" << gscp->syntax; |
| 139 | os << "\n"; |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | |
| 144 | // For now, just do a list. |