X-Git-Url: https://git.openssl.org/?a=blobdiff_plain;f=apps%2Fsess_id.c;h=5183ea93edc29784b30120e825bbfbf1852737c6;hb=4b1fe471ac99b9f8692be85dcbcbf6977eb35c78;hp=d8e1827776854b8880e036d643dd3d807368ea75;hpb=dffa752023318b2fcccac2857ff133d5d11e5801;p=openssl.git diff --git a/apps/sess_id.c b/apps/sess_id.c index d8e1827776..5183ea93ed 100644 --- a/apps/sess_id.c +++ b/apps/sess_id.c @@ -25,16 +25,21 @@ typedef enum OPTION_choice { } OPTION_CHOICE; const OPTIONS sess_id_options[] = { + OPT_SECTION("General"), {"help", OPT_HELP, '-', "Display this summary"}, + {"context", OPT_CONTEXT, 's', "Set the session ID context"}, + + OPT_SECTION("Input"), + {"in", OPT_IN, 's', "Input file - default stdin"}, {"inform", OPT_INFORM, 'F', "Input format - default PEM (DER or PEM)"}, + + OPT_SECTION("Output"), + {"out", OPT_OUT, '>', "Output file - default stdout"}, {"outform", OPT_OUTFORM, 'f', "Output format - default PEM (PEM, DER or NSS)"}, - {"in", OPT_IN, 's', "Input file - default stdin"}, - {"out", OPT_OUT, '>', "Output file - default stdout"}, {"text", OPT_TEXT, '-', "Print ssl session id details"}, {"cert", OPT_CERT, '-', "Output certificate "}, {"noout", OPT_NOOUT, '-', "Don't output the encoded session info"}, - {"context", OPT_CONTEXT, 's', "Set the session ID context"}, {NULL} };