Basic infrastructure changes for FEC/DCCP support.
[paraslash.git] / send_common.c
index b44c8133d821ef2611650eee0ea40039af18bbc3..ed140c8487ee7fb806d247f7d874855e804efcff 100644 (file)
@@ -417,7 +417,6 @@ static int parse_fec_parms(const char *arg, struct sender_command_data *scd)
        ret = -ERRNO_TO_PARA_ERROR(EINVAL);
        if (val < 0 || val > 65535)
                goto out;
-       scd->max_slice_bytes = val;
        /* parse data_slices_per_group */
        b = e + 1;
        e = strchr(b, ':');
@@ -480,7 +479,6 @@ int parse_fec_url(const char *arg, struct sender_command_data *scd)
                goto out;
        }
        /* use default fec parameters. */
-       scd->max_slice_bytes = 1472;
        scd->slices_per_group = 16;
        scd->data_slices_per_group = 14;
        ret = 0;