Data-Over-Voice
[lcr.git] / options.c
index 760cfb3..9274eb1 100644 (file)
--- a/options.c
+++ b/options.c
@@ -35,9 +35,8 @@ struct options options = {
        0700,                           /* rights of lcr admin socket */
        -1,                             /* socket user (-1= no change) */
        -1,                             /* socket group (-1= no change) */
-       1,                              /* use polling of main loop */
-       "mISDN_l1loop.1",               /* GSM/Asterisk side */
-       "mISDN_l1loop.2",               /* LCR side */
+       0,                              /* use polling of main loop */
+       "/root",                        /* OTP directory */
 };
 
 char options_error[256];
@@ -238,21 +237,12 @@ int read_options(char *options_error)
                if (!strcmp(option,"polling")) {
                        options.polling = 1;
                } else
-               if (!strcmp(option,"loopback-ext")) {
+               if (!strcmp(option,"otp-dir")) {
                        if (param[0]==0) {
-                               UPRINT(options_error, "Error in %s (line %d): parameter for option %s missing.\n",filename,line, option);
-                               goto error;
-                       }
-                       SCPY(options.loopback_ext, param);
-
-               } else
-               if (!strcmp(option,"loopback-lcr")) {
-                       if (param[0]==0) {
-                               UPRINT(options_error, "Error in %s (line %d): parameter for option %s missing.\n",filename,line, option);
+                               UPRINT(options_error, "Error in %s (line %d): parameter for option %s missing.\n", filename,line,option);
                                goto error;
                        }
-                       SCPY(options.loopback_lcr, param);
-
+                       SCPY(options.otp_dir, param);
                } else {
                        UPRINT(options_error, "Error in %s (line %d): wrong option keyword %s.\n", filename,line,option);
                        goto error;