Changes in / [a9db9b8:06e2209] in mainline
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/netecho/netecho.c
ra9db9b8 r06e2209 173 173 } else if (str_lcmp(argv[index] + 2, "count=", 6) == 0) { 174 174 rc = arg_parse_int(argc, argv, &index, &count, 8); 175 if (rc != EOK) 176 return rc; 175 177 } else if (str_lcmp(argv[index] + 2, "family=", 7) == 0) { 176 178 rc = arg_parse_name_int(argc, argv, &index, &family, 9, socket_parse_protocol_family); -
uspace/lib/c/generic/net/socket_client.c
ra9db9b8 r06e2209 253 253 rc = dyn_fifo_push(&socket->accepted, 1, 254 254 SOCKET_MAX_ACCEPTED_SIZE); 255 if (rc != EOK) {255 if (rc == EOK) { 256 256 // signal the accepted socket 257 257 fibril_condvar_signal(&socket->accept_signal);
Note:
See TracChangeset
for help on using the changeset viewer.