Hi,
looking at the net package of the standard library, I don't see a way to set the tcp max segment size. Surely, one can create a tcp connection manually and set the segment size by using the syscall package, but that approach prevents them from reusing higher level packages that want a net.Dialer, for example crypto/tls. So in short, to create a tls connection in golang and set its TCP MSS, one has to reimplement tls, unless I missed something.
Would it make sense to have a dialer field for the MSS?