Searched hist:79 (Results 1 - 25 of 51) sorted by relevance

123

/freebsd-10.2-release/sys/modules/mac_portacl/
H A DMakefile111771 Sun Mar 02 23:01:42 MST 2003 rwatson A cute yet small MAC policy that provides a simple ACL mechanism to
permit users and groups to bind ports for TCP or UDP, and is intended
to be combined with the recently committed support for
net.inet.ip.portrange.reservedhigh. The policy is twiddled using
sysctl(8). To use this module, you will need to compile in MAC
support, and probably set reservedhigh to 0, then twiddle
security.mac.portacl.rules to set things as desired. This policy
module only restricts ports explicitly bound using bind(), not
implicitly bound ports where the port number is selected by the
IP stack. It appears to work properly in my local configuration,
but needs more broad testing.

A sample policy might be:

# sysctl security.mac.portacl.rules="uid:425:tcp:80,uid:425:tcp:79"

This permits uid 425 to bind TCP sockets to ports 79 and 80. Currently
no distinction is made for incoming vs. outgoing ports with TCP,
although that would probably be easy to add.

Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories
111771 Sun Mar 02 23:01:42 MST 2003 rwatson A cute yet small MAC policy that provides a simple ACL mechanism to
permit users and groups to bind ports for TCP or UDP, and is intended
to be combined with the recently committed support for
net.inet.ip.portrange.reservedhigh. The policy is twiddled using
sysctl(8). To use this module, you will need to compile in MAC
support, and probably set reservedhigh to 0, then twiddle
security.mac.portacl.rules to set things as desired. This policy
module only restricts ports explicitly bound using bind(), not
implicitly bound ports where the port number is selected by the
IP stack. It appears to work properly in my local configuration,
but needs more broad testing.

A sample policy might be:

# sysctl security.mac.portacl.rules="uid:425:tcp:80,uid:425:tcp:79"

This permits uid 425 to bind TCP sockets to ports 79 and 80. Currently
no distinction is made for incoming vs. outgoing ports with TCP,
although that would probably be easy to add.

Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories
/freebsd-10.2-release/usr.bin/shar/
H A Dshar.shdiff 179355 Tue May 27 09:45:18 MDT 2008 remko Limit the EOF marker length to a maximum of 79
characters. [1]

Add $FreeBSD$ tag so that I can actually commit this.

PR: bin/118782
Reported by: Bjoern Koenig
Patch by: edwin, Jaakko Heinonen (not used patch)
MFC after: 1 week
Approved by: imp (mentor, implicit)
/freebsd-10.2-release/sys/ddb/
H A Ddb_output.hdiff 163134 Sun Oct 08 18:15:08 MDT 2006 bde Fixed formatting of printing of command tables. WIth the default max
output width of 79, only 6 columns of width 12 each fit, but 7 columns
were printed.

The fix is to pass the width of the next output to db_end_line() and
not assume there that this width is always 1.

Related unfixed bugs:
- 1 character is wasted for a space after the last column
- suppression of trailing spaces used to limit the misformatting, but
seems to have been lost
- in db_examine(), the width of the next output is not know and is
still assumed to be 1.
H A Ddb_output.cdiff 163134 Sun Oct 08 18:15:08 MDT 2006 bde Fixed formatting of printing of command tables. WIth the default max
output width of 79, only 6 columns of width 12 each fit, but 7 columns
were printed.

The fix is to pass the width of the next output to db_end_line() and
not assume there that this width is always 1.

Related unfixed bugs:
- 1 character is wasted for a space after the last column
- suppression of trailing spaces used to limit the misformatting, but
seems to have been lost
- in db_examine(), the width of the next output is not know and is
still assumed to be 1.
diff 18298 Sat Sep 14 11:54:59 MDT 1996 bde Attached vm ddb commands `show map', `show vmochk', `show object',
`show vmopag', `show page' and `show pageq'. Moved all vm ddb stuff
to the ends of the vm source files.

Changed printf() to db_printf(), `indent' to db_indent, and iprintf()
to db_iprintf() in ddb commands. Moved db_indent and db_iprintf()
from vm to ddb.

vm_page.c:
Don't use __pure. Staticized.

db_output.c:
Reduced page width from 80 to 79 to inhibit double spacing for long
lines (there are still some problems if words are printed across
column 79).
diff 18298 Sat Sep 14 11:54:59 MDT 1996 bde Attached vm ddb commands `show map', `show vmochk', `show object',
`show vmopag', `show page' and `show pageq'. Moved all vm ddb stuff
to the ends of the vm source files.

Changed printf() to db_printf(), `indent' to db_indent, and iprintf()
to db_iprintf() in ddb commands. Moved db_indent and db_iprintf()
from vm to ddb.

vm_page.c:
Don't use __pure. Staticized.

db_output.c:
Reduced page width from 80 to 79 to inhibit double spacing for long
lines (there are still some problems if words are printed across
column 79).
H A Ddb_examine.cdiff 163134 Sun Oct 08 18:15:08 MDT 2006 bde Fixed formatting of printing of command tables. WIth the default max
output width of 79, only 6 columns of width 12 each fit, but 7 columns
were printed.

The fix is to pass the width of the next output to db_end_line() and
not assume there that this width is always 1.

Related unfixed bugs:
- 1 character is wasted for a space after the last column
- suppression of trailing spaces used to limit the misformatting, but
seems to have been lost
- in db_examine(), the width of the next output is not know and is
still assumed to be 1.
/freebsd-10.2-release/sys/security/mac_portacl/
H A Dmac_portacl.c111771 Sun Mar 02 23:01:42 MST 2003 rwatson A cute yet small MAC policy that provides a simple ACL mechanism to
permit users and groups to bind ports for TCP or UDP, and is intended
to be combined with the recently committed support for
net.inet.ip.portrange.reservedhigh. The policy is twiddled using
sysctl(8). To use this module, you will need to compile in MAC
support, and probably set reservedhigh to 0, then twiddle
security.mac.portacl.rules to set things as desired. This policy
module only restricts ports explicitly bound using bind(), not
implicitly bound ports where the port number is selected by the
IP stack. It appears to work properly in my local configuration,
but needs more broad testing.

A sample policy might be:

# sysctl security.mac.portacl.rules="uid:425:tcp:80,uid:425:tcp:79"

This permits uid 425 to bind TCP sockets to ports 79 and 80. Currently
no distinction is made for incoming vs. outgoing ports with TCP,
although that would probably be easy to add.

Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories
111771 Sun Mar 02 23:01:42 MST 2003 rwatson A cute yet small MAC policy that provides a simple ACL mechanism to
permit users and groups to bind ports for TCP or UDP, and is intended
to be combined with the recently committed support for
net.inet.ip.portrange.reservedhigh. The policy is twiddled using
sysctl(8). To use this module, you will need to compile in MAC
support, and probably set reservedhigh to 0, then twiddle
security.mac.portacl.rules to set things as desired. This policy
module only restricts ports explicitly bound using bind(), not
implicitly bound ports where the port number is selected by the
IP stack. It appears to work properly in my local configuration,
but needs more broad testing.

A sample policy might be:

# sysctl security.mac.portacl.rules="uid:425:tcp:80,uid:425:tcp:79"

This permits uid 425 to bind TCP sockets to ports 79 and 80. Currently
no distinction is made for incoming vs. outgoing ports with TCP,
although that would probably be easy to add.

Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories
/freebsd-10.2-release/sys/i386/include/
H A Dfloat.hdiff 79 Tue Jun 29 13:34:33 MDT 1993 nate Setting up for updated (usable) FPE atof/vfprintf/vfscanf fixes
/freebsd-10.2-release/sys/dev/nfe/
H A Dif_nfereg.hdiff 183509 Wed Oct 01 00:27:22 MDT 2008 yongari Add device ids for MCP77/79 and set appropriate support flags.

Obtained from: OpenBSD
PR: kern/127529
H A Dif_nfe.cdiff 183509 Wed Oct 01 00:27:22 MDT 2008 yongari Add device ids for MCP77/79 and set appropriate support flags.

Obtained from: OpenBSD
PR: kern/127529
/freebsd-10.2-release/sys/x86/include/
H A Dfloat.hdiff 79 Tue Jun 29 13:34:33 MDT 1993 nate Setting up for updated (usable) FPE atof/vfprintf/vfscanf fixes
/freebsd-10.2-release/sys/amd64/include/
H A Dfloat.hdiff 79 Tue Jun 29 13:34:33 MDT 1993 nate Setting up for updated (usable) FPE atof/vfprintf/vfscanf fixes
/freebsd-10.2-release/usr.bin/wall/
H A Dwall.cdiff 175346 Tue Jan 15 07:40:30 MST 2008 das Fix some bugs in wall(1):
- Handle wrapping correctly when \r appears in the input, and don't
remove the \r from the output.
- For lines longer than 79 characters, don't drop every 80th character.
- Style: Braces around compound while statement.

PR: 114498
Submitted by: Niclas Zeising <niclas.zeising@gmail.com> (earlier version)
/freebsd-10.2-release/usr.bin/finger/
H A Dsprint.cdiff 11386 Tue Oct 10 02:31:09 MDT 1995 peter Reverse out some of the previous commit I did, which shortened the
finger output from 80 to 79 characters to stop the syscons
every-second-line-is-blank problem.

Also, redo the TTY column mod so that it steals one of the (usually) two
blank spaces from the before the tty column rather than from the office
phone number.

This means the office phone field width in the short finger is back to 15
characters instead of 13.
/freebsd-10.2-release/sys/boot/i386/libi386/
H A Dvidconsole.cdiff 84277 Mon Oct 01 11:48:02 MDT 2001 yokota Fix the function CD(): "Clear to the end of the screen".

- When the video BIOS is called to clear the region (x, y)-(79, 24)
(by scrolling), the slashed region in Fig.1 is cleared. CD() is
supposed to clear the region shown in Fig.2.
x x
+-------+ +-------+
| | | |
y| ////| y| ////|
| ////| |///////|
| ////| |///////|
+-------+ +-------+
Fig.1 Fig.2

- Don't move the cursor during this operation.
/freebsd-10.2-release/sys/dev/ata/chipsets/
H A Data-nvidia.cdiff 198818 Mon Nov 02 19:16:24 MST 2009 mav Add IDs for nVidia MCP65/77/79/89 SATA conntrollers.
/freebsd-10.2-release/sys/dev/mii/
H A Dmiidevsdiff 164833 Sat Dec 02 21:18:56 MST 2006 marius - Add another Altima PHY, which is a AC101 workalike and integrated
in at least ADMtek ADM8511 but apparently is not mentioned in any
publically available data sheet so the actual identifier is unknown.
- Add Davicom DM9102 PHY.
- Add DM9101 to the description of AMD 79C873 as at least some Davicom
DM9101F identify identical to AMD 79C873.

Obtained from: NetBSD
MFC after: 2 weeks
diff 164833 Sat Dec 02 21:18:56 MST 2006 marius - Add another Altima PHY, which is a AC101 workalike and integrated
in at least ADMtek ADM8511 but apparently is not mentioned in any
publically available data sheet so the actual identifier is unknown.
- Add Davicom DM9102 PHY.
- Add DM9101 to the description of AMD 79C873 as at least some Davicom
DM9101F identify identical to AMD 79C873.

Obtained from: NetBSD
MFC after: 2 weeks
diff 66127 Wed Sep 20 17:02:16 MDT 2000 wpaul Add the ID for the built-in homePNA PHY in the AMD 79C798 controller.
/freebsd-10.2-release/sys/compat/linux/
H A Dlinux_getcwd.cdiff 145006 Wed Apr 13 10:59:09 MDT 2005 jeff - Change all filesystems and vfs_cache to relock the dvp once the child is
locked in the ISDOTDOT case. Se vfs_lookup.c r1.79 for details.

Sponsored by: Isilon Systems, Inc.
/freebsd-10.2-release/usr.sbin/pkg_install/info/
H A Dinfo.hdiff 67300 Wed Oct 18 20:16:26 MDT 2000 des Trim index lines down to 79 characters, not 80.

Approved by: jkh
/freebsd-10.2-release/sys/fs/cd9660/
H A Dcd9660_lookup.cdiff 145006 Wed Apr 13 10:59:09 MDT 2005 jeff - Change all filesystems and vfs_cache to relock the dvp once the child is
locked in the ISDOTDOT case. Se vfs_lookup.c r1.79 for details.

Sponsored by: Isilon Systems, Inc.
/freebsd-10.2-release/sys/fs/msdosfs/
H A Dmsdosfs_lookup.cdiff 145006 Wed Apr 13 10:59:09 MDT 2005 jeff - Change all filesystems and vfs_cache to relock the dvp once the child is
locked in the ISDOTDOT case. Se vfs_lookup.c r1.79 for details.

Sponsored by: Isilon Systems, Inc.
/freebsd-10.2-release/sys/vm/
H A Dvm_extern.hdiff 18298 Sat Sep 14 11:54:59 MDT 1996 bde Attached vm ddb commands `show map', `show vmochk', `show object',
`show vmopag', `show page' and `show pageq'. Moved all vm ddb stuff
to the ends of the vm source files.

Changed printf() to db_printf(), `indent' to db_indent, and iprintf()
to db_iprintf() in ddb commands. Moved db_indent and db_iprintf()
from vm to ddb.

vm_page.c:
Don't use __pure. Staticized.

db_output.c:
Reduced page width from 80 to 79 to inhibit double spacing for long
lines (there are still some problems if words are printed across
column 79).
diff 18298 Sat Sep 14 11:54:59 MDT 1996 bde Attached vm ddb commands `show map', `show vmochk', `show object',
`show vmopag', `show page' and `show pageq'. Moved all vm ddb stuff
to the ends of the vm source files.

Changed printf() to db_printf(), `indent' to db_indent, and iprintf()
to db_iprintf() in ddb commands. Moved db_indent and db_iprintf()
from vm to ddb.

vm_page.c:
Don't use __pure. Staticized.

db_output.c:
Reduced page width from 80 to 79 to inhibit double spacing for long
lines (there are still some problems if words are printed across
column 79).
/freebsd-10.2-release/sys/fs/ext2fs/
H A Dext2_lookup.cdiff 145006 Wed Apr 13 10:59:09 MDT 2005 jeff - Change all filesystems and vfs_cache to relock the dvp once the child is
locked in the ISDOTDOT case. Se vfs_lookup.c r1.79 for details.

Sponsored by: Isilon Systems, Inc.
/freebsd-10.2-release/sys/fs/smbfs/
H A Dsmbfs_vnops.cdiff 145006 Wed Apr 13 10:59:09 MDT 2005 jeff - Change all filesystems and vfs_cache to relock the dvp once the child is
locked in the ISDOTDOT case. Se vfs_lookup.c r1.79 for details.

Sponsored by: Isilon Systems, Inc.
/freebsd-10.2-release/sys/fs/udf/
H A Dudf_vnops.cdiff 145006 Wed Apr 13 10:59:09 MDT 2005 jeff - Change all filesystems and vfs_cache to relock the dvp once the child is
locked in the ISDOTDOT case. Se vfs_lookup.c r1.79 for details.

Sponsored by: Isilon Systems, Inc.
/freebsd-10.2-release/usr.bin/netstat/
H A Dif.cdiff 164095 Wed Nov 08 15:15:05 MST 2006 bde Don't always print a space character in show_stat(), since a space
shouldn't be printed after the last column. This restores the
formatting to 79 columns.

Completed in 541 milliseconds

123