+2003-10-14 Pat Thoyts <patthoyts@users.sourceforge.net>
+
+ * generic/udp_tcl.c: Fix CONSTness for Tcl < 8.4
+
2003-06-13 Pat Thoyts <patthoyts@users.sourceforge.net>
* generic/udp_tcl.c: Cleaned up some -Wall warnings under unix.
CONST84 char *optionName, Tcl_DString *optionValue)
{
UdpState *statePtr = (UdpState *)instanceData;
- const char * options = "myport remote peer mcastadd mcastdrop";
+ CONST84 char * options = "myport remote peer mcastadd mcastdrop";
int r = TCL_OK;
if (optionName == NULL) {
*/
static int
udpSetOption(ClientData instanceData, Tcl_Interp *interp,
- CONST char *optionName, CONST char *newValue)
+ CONST84 char *optionName, CONST84 char *newValue)
{
UdpState *statePtr = (UdpState *)instanceData;
- const char * options = "remote mcastadd mcastdrop";
+ CONST84 char * options = "remote mcastadd mcastdrop";
int r = TCL_OK;
if (!strcmp("-remote", optionName)) {