Changeset 0349a10 in mainline
- Timestamp:
- 2010-12-25T21:48:41Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- af4f86f
- Parents:
- 631ee0c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/netecho/netecho.c
r631ee0c r0349a10 117 117 int rc; 118 118 119 / / parse the command line arguments119 /* Parse command line arguments */ 120 120 for (index = 1; index < argc; ++ index) { 121 121 if (argv[index][0] == '-') { … … 166 166 verbose = 1; 167 167 break; 168 / / long options with the double minus sign ('-')168 /* Long options with double dash */ 169 169 case '-': 170 170 if (str_lcmp(argv[index] + 2, "backlog=", 6) == 0) { … … 219 219 } 220 220 221 / / check the buffer size221 /* Check buffer size */ 222 222 if (size <= 0) { 223 223 fprintf(stderr, "Receive size too small (%zu). Using 1024 bytes instead.\n", size); 224 224 size = 1024; 225 225 } 226 // size plus the terminating null (\0) 226 227 /* size plus the terminating null character. */ 227 228 data = (char *) malloc(size + 1); 228 229 if (!data) { … … 231 232 } 232 233 233 / / set the reply size if set234 /* Set the reply size if set */ 234 235 reply_length = reply ? str_length(reply) : 0; 235 236 236 / / prepare the address buffer237 /* Prepare the address buffer */ 237 238 bzero(address_data, max_length); 238 239 switch (family) { … … 252 253 } 253 254 254 / / get a listening socket255 /* Get a listening socket */ 255 256 listening_id = socket(family, type, 0); 256 257 if (listening_id < 0) { … … 259 260 } 260 261 261 / / if the stream socket is used262 /* if the stream socket is used */ 262 263 if (type == SOCK_STREAM) { 263 / / check the backlog264 /* Check backlog size */ 264 265 if (backlog <= 0) { 265 266 fprintf(stderr, "Accepted sockets queue size too small (%zu). Using 3 instead.\n", size); 266 267 backlog = 3; 267 268 } 268 // set the backlog 269 270 /* Set the backlog */ 269 271 rc = listen(listening_id, backlog); 270 272 if (rc != EOK) { … … 274 276 } 275 277 276 / / bind the listenning socket278 /* Bind the listening socket */ 277 279 rc = bind(listening_id, address, addrlen); 278 280 if (rc != EOK) { … … 286 288 socket_id = listening_id; 287 289 288 // do count times 289 // or indefinitely if set to a negative value 290 /* 291 * do count times 292 * or indefinitely if set to a negative value 293 */ 290 294 while (count) { 291 295 292 296 addrlen = max_length; 293 297 if (type == SOCK_STREAM) { 294 / / acceept a socket if the stream socket is used298 /* Accept a socket if the stream socket is used */ 295 299 socket_id = accept(listening_id, address, &addrlen); 296 300 if (socket_id <= 0) { … … 302 306 } 303 307 304 / / if the datagram socket is used or the stream socked was accepted308 /* if the datagram socket is used or the stream socked was accepted */ 305 309 if (socket_id > 0) { 306 310 307 / / receive an echo request311 /* Receive a message to echo */ 308 312 value = recvfrom(socket_id, data, size, 0, address, &addrlen); 309 313 if (value < 0) { … … 312 316 length = (size_t) value; 313 317 if (verbose) { 314 / / print the header315 316 / / get the source port and prepare the address buffer318 /* Print the header */ 319 320 /* Get the source port and prepare the address buffer */ 317 321 address_start = NULL; 318 322 switch (address->sa_family) { … … 329 333 address->sa_family, address->sa_family); 330 334 } 331 // parse the source address 335 336 /* Parse source address */ 332 337 if (address_start) { 333 338 rc = inet_ntop(address->sa_family, address_start, address_string, sizeof(address_string)); … … 342 347 } 343 348 344 / / answer the request either with the static reply or the original data349 /* Answer the request either with the static reply or the original data */ 345 350 rc = sendto(socket_id, reply ? reply : data, reply ? reply_length : length, 0, address, addrlen); 346 351 if (rc != EOK) … … 348 353 } 349 354 350 / / close the accepted stream socket355 /* Close accepted stream socket */ 351 356 if (type == SOCK_STREAM) { 352 357 rc = closesocket(socket_id); … … 357 362 } 358 363 359 / / decrease the count if positive364 /* Decrease count if positive */ 360 365 if (count > 0) { 361 366 count--; … … 368 373 printf("Closing the socket\n"); 369 374 370 / / close the listenning socket375 /* Close listenning socket */ 371 376 rc = closesocket(listening_id); 372 377 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.