9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: "Pavel Klinkovský" <pavel.klinkovsky@gmail.com>
To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net>
Subject: [9fans] Strange behavior of 'go's' DialUDP under Plan9
Date: Thu,  1 Mar 2018 16:23:05 +0100	[thread overview]
Message-ID: <CAGNd-2Nyc=uL=MaVKq-c0+rdRiusF5DSpxsOyb46BCaVJKyksw@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 738 bytes --]

Hi all,

I am trying a very simple 'go' program under Plan9 (both 386 and ARM):

package main

import (
"fmt"
"net"
"time"
)

func main() {
laddr, err := net.ResolveUDPAddr("udp", ":6000")
if err != nil {
fmt.Println("laddr: ", err)
}

raddr, err := net.ResolveUDPAddr("udp", "cpx61.tk8.lan:6000")
if err != nil {
fmt.Println("raddr: ", err)
}

conn, err := net.DialUDP("udp", laddr, raddr)
if err != nil {
fmt.Println("Error: ", err)
}
defer conn.Close()

time.Sleep(time.Minute)
}

When running I check 'netstat' listing:

udp  0    pavel      Open         39505      6000       cpx61.tk8.lan

It seems 'go' port for Plan9 incorrectly handles local port specification
in DialUDP function.

Pavel

[-- Attachment #2: Type: text/html, Size: 1982 bytes --]

                 reply	other threads:[~2018-03-01 15:23 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAGNd-2Nyc=uL=MaVKq-c0+rdRiusF5DSpxsOyb46BCaVJKyksw@mail.gmail.com' \
    --to=pavel.klinkovsky@gmail.com \
    --cc=9fans@9fans.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).