// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build amd64,netbsd package unix func setTimespec(sec, nsec int64) Timespec { return Timespec{Sec: sec, Nsec: nsec} } func setTimeval(sec, usec int64) Timeval { return Timeval{Sec: sec, Usec: int32(usec)} } func SetKevent(k *Kevent_t, fd, mode, flags int) { k.Ident = uint64(fd) k.Filter = uint32(mode) k.Flags = uint32(flags) } func (iov *Iovec) SetLen(length int) { iov.Len = uint64(length) } func (msghdr *Msghdr) SetControllen(length int) { msghdr.Controllen = uint32(length) } func (cmsg *Cmsghdr) SetLen(length int) { cmsg.Len = uint32(length) } ='freebsd-ports Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/security/py-netmiko/Makefile
Commit message (Expand)AuthorAgeFilesLines
* security/py-netmiko: Update to 4.5.0Kai Knoblich2024-12-121-6/+9
* security/py-netmiko: Update to 4.4.0Kai Knoblich2024-07-131-5/+5
* devel/py-pyyaml: Move devel/py-yaml to devel/py-pyyamlPo-Chuan Hsieh2024-07-071-2/+2
* security/libsodium: update to 1.0.19, bump dependent portsVsevolod Stakhov2024-05-201-0/+1
* security/py-netmiko: Update to 4.3.0Kai Knoblich2023-11-201-7/+5
* all: remove explicit versions in USES=python for "3.x+"Rene Ladan2023-06-281-1/+1
* security/py-netmiko: Update to 4.2.0Kai Knoblich2023-05-161-8/+11
* Add WWW entries to port MakefilesStefan Eßer2022-09-081-0/+1
* security/py-netmiko: Update to 4.1.2Kai Knoblich2022-09-041-1/+1
* security/py-netmiko: Update to 4.1.1Kai Knoblich2022-07-221-9/+10