I'm guessing this is not desired response from talks.golang.org..:
Error: Server ErrorThe service you requested is not available yet.
Please try again in 30 seconds.
It's been down for last few days... Anybody has any idea when the service
is going to be back?
--
You received this message be
It appears nothing is wrong with my code... it's just red hat firewalld
that is blocking ospf...
On Thursday, 8 June 2017 13:37:27 UTC+1, brylant wrote:
>
> Hi,
>
> I'm trying to capture OSPF hello packets like this:
>
> ens192, err := net.InterfaceByNam
Hi,
I'm trying to capture OSPF hello packets like this:
ens192, err := net.InterfaceByName("ens192")
if err != nil {
return err
}
c, err := net.ListenPacket("ip4:89", "0.0.0.0") // ipv4 proto 89,
all local interfaces
if err != nil {
Hi,
I'm trying to capture OSPF hello packets like this:
ens192, err := net.InterfaceByName("ens192")
if err != nil {
return err
}
_ = ens192
c, err := net.ListenPacket("ip4:89", "0.0.0.0") // ipv4 proto 89,
all local interfaces
if e
I've been trying hard (well.. as much as I can considering my lack of
in-depth go knowledge or - to be perfectly honest - lack of in-depth
knowledge of anything) to find suitable go+sql technique that would not
require a lot of code repetition, not use reflection and not use ORMs of
any sort..