Subject: Clarifications regarding assn 3 (This message is being sent to all CPSC 360 students) Problem (1) Its a good idea to ensure that ALL of the following are included in rps.h or socklib.h #include #include #include #include #include #include #include #include #include #include #include #include Problem (2) This is the proper configuration to TURN ON dprintf #define dprintf(format, args...) fprintf(stderr, format, ##args) // #define dprintf(format, args...) #define nprintf(format, args...) Some people have apparently been turning off dprintf() in an attempt to resolve missing references to stderr that were actually triggered by problem (1)