December 09, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=667

           Summary: incorrect value for std.socket.SocketShutdown.BOTH
           Product: D
           Version: 0.176
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: thomas-dloop@kuehne.cn


# enum SocketShutdown: int
# {
#          RECEIVE =  SD_RECEIVE,  /// socket receives are disallowed
#          SEND =     SD_SEND,     /// socket sends are disallowed
#          BOTH =     SD_RECEIVE,  /// both RECEIVE and SEND
# }

should be

# enum SocketShutdown: int
# {
#          RECEIVE =  SD_RECEIVE,  /// socket receives are disallowed
#          SEND =     SD_SEND,     /// socket sends are disallowed
#          BOTH =     SD_BOTH      /// both RECEIVE and SEND
# }


-- 

December 27, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=667


bugzilla@digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #1 from bugzilla@digitalmars.com  2006-12-27 02:02 -------
Fixed DMD 0.178


--