summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/setbuffer.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-04-22more kerberos zapping;jmc1-21/+2
2014-04-22zap eol whitespace;jmc1-6/+6
2014-04-22zap stray Pp;jmc1-2/+1
2014-04-22More KNF.jsing4-95/+92
2014-04-22malloc -> callocgilles1-3/+3
2014-04-22More KNF.jsing1-31/+37
2014-04-22More KNF.jsing6-56/+74
2014-04-22More KNF.jsing1-150/+225
2014-04-22no more kerb, ok kettenishenning1-25/+2
2014-04-22no more kerberos authentication styles.sobrado1-25/+6
ok henning@, reyk@
2014-04-22More KNF.jsing2-79/+127
2014-04-22Document sftp upload resume.logan1-8/+29
OK from djm@, with feedback from okan@.
2014-04-22Instead of special casing ftpd, uucpd and others that may have entriesokan1-5/+13
in wtmp, go the other way and exclude entries we know ('console' and 'tty') from pid stripping, then strip the rest. idea, feedback and ok millert@
2014-04-22ifa_ifwithroute() is the only magic place where an AF_LINK sockaddrmpi2-16/+19
can be given to ifa_ifwithnet(). Handle this specific case directly and let ifa_ifwithnet() do only one thing: iterate on all the addresses of all the interfaces in a given routing domain to return the most specific matching address. ok mikeb@
2014-04-22pure reindentespie1-89/+88
2014-04-22NULL is cooler than 0 when pointers are concernedhenning1-6/+6
ok gcc & md5 (aka no binary change)
2014-04-22Update iked to use the same proc.c that relayd uses.reyk9-145/+400
Less differences, less code to audit. ok mikeb@
2014-04-22If VLAN_HWTAGGING is disabled, we tell the chip not to strip thenaddy1-2/+3
tag from the received frame. Do not add the tag from the receive descriptor in this case so that the packet isn't tagged twice. Matches FreeBSD. ok brad@
2014-04-22comment out the .if (${KERBEROS5:L} block for now, breaks the buildhenning1-6/+6
once the bsd.own.mk KERBEROS5 is removed otherwise. this way suggested by theo.
2014-04-22we used to handle the vlan tag etc insertion very very very late,henning2-36/+51
on al already ass embed ethernet frame, which meant: -copy (most of) the existing ethernet header into a ether_vlan_header on the stack -fill the extra fields in ether_vlan_header -set the ether type -m_adj() to make room for the extra space ether_vlan_header needs -m_copyback the ether_vlan_header into the mbuf that involves moving data around, which isn't all that cheap. cleaner & easier to have ether_output prepend the ether_vlan_header instead of the regular ethernet header, which makes the vlan tagging essentially free in most cases. help & ok reyk, naddy; waste of time bikeshedding tech@
2014-04-22syncderaadt22-1944/+4
2014-04-22no more kerberos, ok theo reykhenning4-69/+9
2014-04-22Remove the kerberos login methods.reyk2-342/+0
2014-04-22-KERBEROS5henning1-3/+1
2014-04-22Remove the kerberos login methods.reyk22-186/+19
ok henning@
2014-04-22kerberos has been tedu'd, ok reykhenning1-2/+2
2014-04-22Remove kerberosV, it is not special anymore.reyk1-5/+1
ok henning@
2014-04-22list VSCSI_STAT_RESET.dlg1-3/+4
claudio didnt believe it existed cos it wasnt documented. i didnt believe there was a manpage. i guess we were both wrong.
2014-04-22Remove kerberosV from etc/reyk5-69/+4
ok deraadt@ guenther@
2014-04-22Remove KERBEROS5 from the Makefiles (except ssh for now, where it isreyk9-86/+11
already manually disabled). ok deraadt@
2014-04-22for consistency's sake, use the terminology from the 802.1Q standardhenning1-5/+5
here too. pt out by alexey suslikov via mpi, ok reyk
2014-04-22Oh yeah, MLINKS for errc familyguenther1-2/+3
Prodded by deraadt@
2014-04-22Sort the sftp command list.logan1-3/+3
OK from djm@
2014-04-22The complexity and quality of kerberosV and the fact that almostreyk3299-949125/+0
nobody is using it doesn't justify to have it in base - disable and remove it. If the 2 two people who use it still want it, they can make a port or recompile OpenBSD on their own. There is a quote in theo.c from August 2010: "basically, dung beetles fucking. that's what kerberosV + openssl is like". Discussed with many. Tests by henning@ reyk@ and others. ok deraadt@ henning@
2014-04-22The complexity and quality of kerberosV and the fact that almostreyk1-2/+2
nobody is using it doesn't justify to enable it by default. It will be disabled and removed from base and possibly be moved to ports. Discussed with many. Tests by henning@ reyk@ and others. ok henning@
2014-04-22move vscsi from using scsi_req_probe and scsi_req_detach to usingdlg1-8/+68
the newly minted scsi_probe and scsi_detach respectively from a task it runs itself. the probe and detach ioctls requests work the same before and after this change, but this paves the way for vscsi being able to report the status of these requests back to userland. discussed with claudio@ tested with current iscsid and an md3200i
2014-04-22effectively use emult_realloc, okay guenther@espie3-9/+9
2014-04-22Support the CA key for SSL inspection in the ca process. Instead ofreyk7-73/+185
looking up the keys by relay id, add all keys to a list and look them up by key id. ok benno@
2014-04-22factor out the code that figures out whether you're probing or detachingdlg3-48/+41
a whole bus, a target, or a specific lun on a target from the bioctl and scsi_req paths. i want to reuse this factored code for something claudio wants.
2014-04-22errx when errno won't be set.tedu1-7/+7
2014-04-22gets() is gonelteo1-2/+1
2014-04-22Add errc/verrc/warnc/vwarnc family: versions of err/... that take the errnoguenther7-25/+258
value to use for the strerror() message as an argument. Originally from FreeBSD 3.0 Patch from Steffen Nurpmeso (sdaoden (at) gmail.com) with minor tweaks.
2014-04-22Clarify an err() messageguenther1-2/+2
2014-04-22Convert a malloc(x*y)+memset to calloc(x,y)guenther1-3/+2
From Jean-Philippe Ouellet (jean-philippe (at) ouellet.biz)
2014-04-21Avoid a loop during autoinstall in case the path in the responsefile doesrpe1-1/+2
not exist. OK halex@ krw@
2014-04-21repair regress tests broken by server-side default cipher/kex/mac changesdjm5-10/+37
by ensuring that the option under test is included in the server's algorithm list
2014-04-21Print bytes read and written in human readable form, like:claudio2-6/+12
2849359 I2T calls (5 read, 2849352 writes) 5 data reads (2.3K bytes read) 2849352 data writes (43.5G bytes written) 2849358 T2I calls (2849358 done, 0 sense errors, 0 errors)
2014-04-21Copy the updated proc.c from relayd to use the same file. Adjustreyk5-130/+347
snmpd accordingly. ok sthen@
2014-04-21Change dhcp_request() and v4_config() to be able to configure dhcprpe1-28/+18
for an interface without an active network connection. - Don't write options to dhclient.conf that are default. Only use the 'host-name' option for hostname associated dhcp requests. - Run dhclient with options to reduce the time it takes to finish in case it gets no answer from a DHCP server. - Don't bother removing the interface from group dhcp and save the configuration files even if dhclient fails. If the same interface is statically configured later, it is removed from the group dhcp. - Add 'dhcp' to hostname.if file regardless whether dhcp_request() was successful or not. - Change the Netmask question to be more autoinstaller friendly. based on krw's work discussed with and OK krw@
2014-04-21Bind to localAddr if specified and add some XXX comments about stuffclaudio2-3/+14
that is not prefect yet.