diff --git a/code/internet.lisp b/code/internet.lisp
index 91c6df755d92b13493304d15c71c25d587804186..792e99a117b28d317bbad004f2133cab0247a92d 100644
--- a/code/internet.lisp
+++ b/code/internet.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.14 1994/04/06 17:03:51 hallgren Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.15 1994/06/29 21:39:27 hallgren Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -30,9 +30,9 @@
 	  send-character-out-of-band))
 
 
-(defconstant sock-stream 1)
-(defconstant sock-dgram 2)
-(defconstant sock-raw 3)
+(defconstant sock-stream #-irix 1 #+irix 2)
+(defconstant sock-dgram #-irix 2 #+irix 1)
+(defconstant sock-raw #-irix 3 #+irix 4)
 
 (defconstant af-unix 1)
 (defconstant af-inet 2)