|
@@ -25,6 +25,8 @@
|
|
#include "crypto/sha256.h"
|
|
#include "crypto/sha256.h"
|
|
#include "osu_client.h"
|
|
#include "osu_client.h"
|
|
|
|
|
|
|
|
+const char *spp_xsd_fname = "spp.xsd";
|
|
|
|
+
|
|
|
|
|
|
void write_result(struct hs20_osu_client *ctx, const char *fmt, ...)
|
|
void write_result(struct hs20_osu_client *ctx, const char *fmt, ...)
|
|
{
|
|
{
|
|
@@ -2984,6 +2986,7 @@ static void usage(void)
|
|
" [-w<wpa_supplicant ctrl_iface dir>] "
|
|
" [-w<wpa_supplicant ctrl_iface dir>] "
|
|
"[-r<result file>] [-f<debug file>] \\\n"
|
|
"[-r<result file>] [-f<debug file>] \\\n"
|
|
" [-s<summary file>] \\\n"
|
|
" [-s<summary file>] \\\n"
|
|
|
|
+ " [-x<spp.xsd file name>] \\\n"
|
|
" <command> [arguments..]\n"
|
|
" <command> [arguments..]\n"
|
|
"commands:\n"
|
|
"commands:\n"
|
|
"- to_tnds <XML MO> <XML MO in TNDS format> [URN]\n"
|
|
"- to_tnds <XML MO> <XML MO in TNDS format> [URN]\n"
|
|
@@ -3025,7 +3028,7 @@ int main(int argc, char *argv[])
|
|
return -1;
|
|
return -1;
|
|
|
|
|
|
for (;;) {
|
|
for (;;) {
|
|
- c = getopt(argc, argv, "df:hKNO:qr:s:S:tw:");
|
|
|
|
|
|
+ c = getopt(argc, argv, "df:hKNO:qr:s:S:tw:x:");
|
|
if (c < 0)
|
|
if (c < 0)
|
|
break;
|
|
break;
|
|
switch (c) {
|
|
switch (c) {
|
|
@@ -3063,6 +3066,9 @@ int main(int argc, char *argv[])
|
|
case 'w':
|
|
case 'w':
|
|
wpas_ctrl_path = optarg;
|
|
wpas_ctrl_path = optarg;
|
|
break;
|
|
break;
|
|
|
|
+ case 'x':
|
|
|
|
+ spp_xsd_fname = optarg;
|
|
|
|
+ break;
|
|
case 'h':
|
|
case 'h':
|
|
default:
|
|
default:
|
|
usage();
|
|
usage();
|