Return-Path: william@bourbon.usc.edu Delivery-Date: Tue Sep 9 20:30:24 2008 X-Spam-Checker-Version: SpamAssassin 3.2.3 (2007-08-08) on merlot.usc.edu X-Spam-Level: X-Spam-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.3 Received: from bourbon.usc.edu (bourbon.usc.edu [128.125.9.75]) by merlot.usc.edu (8.14.1/8.14.1) with ESMTP id m8A3UOeQ015038 for ; Tue, 9 Sep 2008 20:30:24 -0700 Received: from bourbon.usc.edu (localhost.localdomain [127.0.0.1]) by bourbon.usc.edu (8.14.2/8.14.1) with ESMTP id m8A3TkGW006139 for ; Tue, 9 Sep 2008 20:29:46 -0700 Message-Id: <200809100329.m8A3TkGW006139@bourbon.usc.edu> To: cs551@merlot.usc.edu Subject: Re: Server Address Date: Tue, 09 Sep 2008 20:29:46 -0700 From: Bill Cheng Someone wrote: > Are you familiar with eclipse at all? Not at all. If you have to use eclipse to compile your code and eclipse is not available on nunki, then it would be a problem! > I am having trouble linking openssl. > It recognizes #include and I included cygwin\lib which > contains "libcrypto.a" but when I compile it says undefined reference to > _MD5_FINAL? The function should be MD5_Final() and not MD5_FINAL(). It's case sensitive. Please remember that we can only grade your submission on nunki from the grading account! You are encouraged to write portable code that runs on both cygwin and Solaris. But you must make sure what you will submit run in the grading account on nunki! We cannot make an exception to grade anywhere else. -- Bill Cheng // bill.cheng@usc.edu -----Original Message----- From: Bill Cheng [mailto:william@bourbon.usc.edu] Sent: Tuesday, September 09, 2008 2:06 PM To: cs551@merlot.usc.edu Subject: Re: Server Address Someone wrote: > What should I keep the server address as? At present I am forcing > it to use 127.0.0.1 because when I use AF_INET it is assigning > 0.0.0.0. You should keep using INADDR_ANY (which is 0.0.0.0). -- Bill Cheng // bill.cheng@usc.edu