Changeset 15282 for trunk/FACT++/dim/src/examples/test_server.c
- Timestamp:
- 04/08/13 15:07:07 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/dim/src/examples/test_server.c
r14936 r15282 110 110 { 111 111 sprintf(str[i],"%s/Service_%03d",argv[1],i); 112 dis_add_service( str[i], "C", str[i], strlen(str[i])+1,112 dis_add_service( str[i], "C", str[i], (int)strlen(str[i])+1, 113 113 (void *)0, 0 ); 114 114 } … … 195 195 sprintf(more_str[curr_more_index],"%s/More_Service_%03d",argv[1],curr_more_index); 196 196 more_ids[curr_more_index] = dis_add_service( more_str[curr_more_index], "C", 197 more_str[curr_more_index], strlen(more_str[curr_more_index])+1,197 more_str[curr_more_index], (int)strlen(more_str[curr_more_index])+1, 198 198 (void *)0, 0 ); 199 199 printf("Adding service %s\n",more_str[curr_more_index]);
Note:
See TracChangeset
for help on using the changeset viewer.