door_linux.go 151 B

123456
  1. package door
  2. func (d *Door) setupChannels() {
  3. go Reader(d.Config.Comm_handle, &d.readerChannel)
  4. go Writer(d.Config.Comm_handle, &d.writerChannel)
  5. }