#define DCCP_MAX_BYTES_PER_WRITE 1024
static struct sender_status dccp_sender_status, *dss = &dccp_sender_status;
-static struct sender *self;
-
struct dccp_fec_client {
struct fec_client_parms fcp;
struct fec_client *fc;
- struct sender_client *sc;
};
static void dccp_pre_select(int *max_fileno, fd_set *rfds,
dccp_shutdown_client(sc);
}
-static int dccp_open(void *client, struct fec_client_parms **fcp)
-{
- struct dccp_fec_client *dfc = client;
-
- dfc->fcp.slices_per_group = 4;
- dfc->fcp.data_slices_per_group = 3;
- dfc->fcp.max_slice_bytes = 1472;
- *fcp = &dfc->fcp;
- return 1;
-}
-
-static int dccp_send_fec(char *buf, size_t len, void *private_data)
+static int dccp_send_fec(struct sender_client *sc, char *buf, size_t len)
{
- struct dccp_fec_client *dfc = private_data;
- int ret = write_nonblock(dfc->sc->fd, buf, len, DCCP_MAX_BYTES_PER_WRITE);
+ int ret = write_nonblock(sc->fd, buf, len, DCCP_MAX_BYTES_PER_WRITE);
if (ret < 0)
- dccp_shutdown_client(dfc->sc);
+ dccp_shutdown_client(sc);
return ret;
}
}
dfc = para_calloc(sizeof(*dfc));
sc->private_data = dfc;
- dfc->sc = sc;
- /* XXX RESOLVED LATER vss_add_fec_client(self, dfc, &dfc->fc); */
+ dfc->fcp.slices_per_group = 4;
+ dfc->fcp.data_slices_per_group = 3;
+ dfc->fcp.max_slice_bytes = DCCP_MAX_BYTES_PER_WRITE; /* FIXME */
+ dfc->fcp.init_fec = NULL; /* FIXME */
+ dfc->fcp.send_fec = dccp_send_fec;
+ dfc->fc = vss_add_fec_client(sc, &dfc->fcp);
}
static int dccp_com_on(__a_unused struct sender_command_data *scd)
s->info = dccp_info;
s->send = NULL;
- s->open = dccp_open;
- s->send_fec = dccp_send_fec;
s->pre_select = dccp_pre_select;
s->post_select = dccp_post_select;
s->shutdown_clients = dccp_shutdown_clients;
ret = generic_com_on(dss, IPPROTO_DCCP);
if (ret < 0)
PARA_ERROR_LOG("%s\n", para_strerror(-ret));
- self = s;
}