فهرست منبع

Can't use pipes. But I'd like to if I can.

Steve Thielemann 2 سال پیش
والد
کامیت
002640e618
1فایلهای تغییر یافته به همراه3 افزوده شده و 2 حذف شده
  1. 3 2
      door/help_test.go

+ 3 - 2
door/help_test.go

@@ -8,13 +8,14 @@ import (
 
 // helper routines - to help with testing.
 
-func setupSockets() (server net.Conn, client net.Conn) {
+// Using pipes causes failures.
+func Possible_setupSockets() (server net.Conn, client net.Conn) {
 	// the better way to set up connections.
 	return net.Pipe()
 }
 
 // setupSockets: return server and client (that's connected to server)
-func Old_setupSockets() (server net.Conn, client net.Conn) {
+func setupSockets() (server net.Conn, client net.Conn) {
 	// establish network socket connection to set Comm_handle
 	var err error
 	var sock net.Listener