I’m running the WIP Sample “UDP Client” application with the only modifications being changes to the APN and socket address/port number plus I’ve added the local (source) port number as follows:
wip_debug( "[appli_entry_point] Creating UDP transmit socket\n" );
tx_socket = wip_UDPCreateOpts( evh_udp_tx,
NULL,
WIP_COPT_PEER_STRADDR, SERVER_DATA_ADDR,
WIP_COPT_PEER_PORT, SERVER_DATA_PORT,
WIP_COPT_PORT, LOCAL_DATA_PORT,
WIP_COPT_END );
On execution of the application program, sometimes it establishes the bearer and everything works fine, but on other occasions I receive the message stream at the end of this post and the application effectively hangs (the latter is probably not too surprising since its very basic code with minimal error recovery).
I can’t find the message
documented anywhere, but maybe I’ve missed it?? What does does it mean in real terms - its obviously referring to something related to context?