Check-in [87034c1a07]
Overview
Comment:Noted that we should process arguments
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:87034c1a0747ef51844ff9581173ac5051c20f32
User & Date: rkeene on 2014-02-05 09:07:24
Other Links: manifest | tags
Context
2014-02-05
09:12
Updated to support being compiled with dietlibc check-in: a832cf965b user: rkeene tags: trunk
09:07
Noted that we should process arguments check-in: 87034c1a07 user: rkeene tags: trunk
09:06
Reverted default port changed inadvertantly and added comments check-in: 69c6325220 user: rkeene tags: trunk
Changes

Modified filed.c from [aa69ce9535] to [310b7c80ea].

   458    458   /* Run process */
   459    459   int main(int argc, char **argv) {
   460    460   	int port = PORT, thread_count = THREAD_COUNT;
   461    461   	const char *bind_addr = BIND_ADDR;
   462    462   	int init_ret;
   463    463   	int fd;
   464    464   
   465         -	/* Ignore */
          465  +	/* XXX: TODO: Process arguments */
   466    466   	argc = argc;
   467    467   	argv = argv;
   468    468   
   469    469   	/* Create listening socket */
   470    470   	fd = filed_listen(bind_addr, port);
   471    471   	if (fd < 0) {
   472    472   		perror("filed_listen");