OBEX_SetCustomData

Name

OBEX_SetCustomData --  Set customdata of an OBEX handle

Synopsis

void OBEX_SetCustomData (obex_t * self, void * data);

Arguments

self

OBEX handle

data

Custom Transport data

Note

this call is *reserved* to the Custom Transport and should not be use by the user/client. It allow to update the Custom Transport data originally set via OBEX_RegisterCTransport. The Custom Transport data (or instance handle) is used to store data relative to the specific instance (i.e. connection), such as file descriptors, offsets and others, so that the Custom Transport can manage multiple connections transparently (i.e. without a lookup table). - Jean II