FACT++  1.0
int DimClient::killServer ( const char *  serverName)
static

Definition at line 1194 of file diccpp.cxx.

References DimCmnd::send().

1195 {
1196  DimCmnd a;
1197  int ret, tag = 1;
1198  char *name = new char[(int)strlen(srvName) + 20];
1199  strcpy(name,(char *)srvName);
1200  strcat(name,"/EXIT");
1201  ret = a.send(name, &tag, sizeof(int));
1202  delete[] name;
1203  return ret;
1204 }
Definition: dic.hxx:280
int send(char *name, void *data, int datasize)
Definition: diccpp.cxx:484

+ Here is the call graph for this function: