Home | History | Annotate | Download | only in network_server

Lines Matching full:path

38 bool listdir(int fd, char *path)
46 if (path == NULL)
53 if (strlen(path) + 1 > sizeof(request.path))
55 fprintf(stderr, "Too long path.\n");
59 strcpy(request.path, path);
92 char *path = NULL;
95 path = argv[1];
110 if (!listdir(sockfd, path))