| /freebsd/contrib/one-true-awk/bugs-fixed/ |
| H A D | README | 21 a new numeric value was assigned, even if OFMT differed from CONVFMT, 22 and also if CONVFMT changed. 33 argument was used without checking if it was present first. 36 argument was used without checking if it was present first. 39 to with sprintf(), which meant that some conversions could write past the 47 calling execute(), in case SUBSEP itself has been changed. 54 15. getline-numeric: The `getline xx < file' syntax did not check if
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | ossl-guide-quic-client-non-block.pod | 18 L<ossl-guide-quic-client-block(7)> page which demonstrates how to write a simple 30 it waits (blocks) until data is available to read if you attempt to read from 31 it when there is no data yet. Similarly it waits when writing if the B<SSL> 32 object is currently unable to write at the moment. This can simplify the 37 object is unable to read/write, for example updating a GUI or performing 43 error if they are currently unable to read or write respectively. 52 we want to read or write to the B<SSL> object but we are currently unable to. 56 operation that it previously attempted periodically to see if it can now 57 complete. Ideally it would only do this in the event that something has changed 62 tried last time. You cannot start something new. For example if you were [all …]
|
| H A D | ossl-guide-tls-client-non-block.pod | 18 L<ossl-guide-tls-client-block(7)> page which demonstrates how to write a simple 28 until data is available to read if you attempt to read from it when there is no 29 data yet. Similarly it waits when writing if the socket is currently unable to 30 write at the moment. This can simplify the development of code because you do 34 to go and do other tasks whilst the socket is unable to read/write, for example 37 With a nonblocking socket attempting to read or write to a socket that is 38 currently unable to read or write will return immediately with a non-fatal 55 if (!BIO_socket_nbio(sock, 1)) { 67 we want to read or write to the socket, but we are currently unable to. In fact 71 operation that it previously attempted periodically to see if it can now [all …]
|
| H A D | ossl-guide-quic-server-non-block.pod | 17 This page presents various source code samples demonstrating how to write a 33 we use select() to make the listening socket block when it cannot read/write. 35 tasks whilst the B<SSL> object is unable to read/write. For example: updating a 46 and that you know how to write and build C code and link it against the 63 if (ctx == NULL) 87 if (SSL_CTX_use_certificate_chain_file(ctx, cert_path) <= 0) { 99 if (SSL_CTX_use_PrivateKey_file(ctx, key_path, SSL_FILETYPE_PEM) <= 0) { 106 when the client does not present a certificate. Note: Even if a client did 158 if (SSL_select_next_proto((unsigned char **)out, out_len, alpn_ossltest, 169 if ((fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0) { [all …]
|
| /freebsd/usr.sbin/bsnmpd/modules/snmp_bridge/ |
| H A D | RSTP-MIB.txt | 70 MAX-ACCESS read-write 91 MAX-ACCESS read-write 148 MAX-ACCESS read-write 161 MAX-ACCESS read-write 172 dot1dStpPortOperEdgePort can be false if a BPDU has 191 set, this object will be changed as well. This object 192 will also be changed to false on reception of a BPDU." 204 MAX-ACCESS read-write 210 that this port should always be treated as if it is 215 point-to-point link if it is an Aggregator and all of its [all …]
|
| H A D | BEGEMOT-BRIDGE-MIB.txt | 247 MAX-ACCESS read-write 283 MAX-ACCESS read-write 352 MAX-ACCESS read-write 458 spanning tree were to use, if this was the root bridge." 464 MAX-ACCESS read-write 468 spanning tree would use for MaxAge if this bridge 475 MAX-ACCESS read-write 479 spanning tree would use for HelloTime if this 486 MAX-ACCESS read-write 490 spanning tree would use for ForwardDelay if this [all …]
|
| /freebsd/contrib/libpcap/doc/ |
| H A D | README.macos | 3 write access to the BPF devices to send packets with libpcap. 7 changed to give users other than root permission to read or write those 12 devices to give users other than root permission to read or write those 30 both read and write access to them. 33 /Library/StartupItems directory should be created if it doesn't already 65 give a particular user permission to read and write the BPF devices and 66 give the administrative users permission to read but not write the BPF 71 (NOTE: due to a bug in Snow Leopard, if you change the permissions not 72 to grant write permission to everybody who should be allowed to capture
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | SSL_write.pod | 6 write bytes to a TLS/SSL connection 23 SSL_write_ex() and SSL_write() write B<num> bytes from the buffer B<buf> into 62 Setting this flag does not cause a stream's send part to be concluded if not all 67 A call to SSL_write_ex2() fails if a flag is passed which is not supported or 68 understood by the given SSL object. An application should determine if a flag is 74 In the paragraphs below a "write function" is defined as one of either 77 If necessary, a write function will negotiate a TLS/SSL session, if not already 80 the write function operation. The behaviour of the write functions depends on the 86 before the first call to a write function. 88 If the underlying BIO is B<blocking>, the write functions will only return, once [all …]
|
| H A D | SSL_CTX_set_mode.pod | 47 the behaviour of write(). 49 This mode cannot be enabled while in the middle of an incomplete write 54 Make it possible to retry SSL_write_ex() or SSL_write() with changed buffer 57 nonblocking write(). 71 incomplete read/write operations. 89 When we no longer need a read buffer or a write buffer for a given SSL, 101 DO NOT ENABLE THIS if your application attempts a normal handshake. 108 SSL_ERROR_WANT_ASYNC with this mode set if an asynchronous capable engine is
|
| H A D | EVP_PKEY_set1_RSA.pod | 66 only if the I<pkey> type isn't implemented just in a L<provider(7)>. 73 EVP_PKEY_get_id() returns -1 (B<EVP_PKEY_KEYMGMT>) if the I<pkey> is 94 EVP_PKEY_get1_EC_KEY() return the referenced key in I<pkey> or NULL if the 99 functions. To write an EVP_PKEY out use the OSSL_ENCODER APIs (see 104 EVP_PKEY_get0_EC_KEY() return the referenced key in I<pkey> or NULL if the 110 To write an EVP_PKEY out use the OSSL_ENCODER APIs (see 112 legacy key or NULL if the key is not legacy. 114 Note that if an EVP_PKEY was not constructed using one of the deprecated 152 EVP_PKEY_get0_DH() and EVP_PKEY_get0_EC_KEY() were changed to have a "const" 158 EVP_PKEY_get1_EC_KEY() functions were not changed to have a "const" return type [all …]
|
| H A D | BIO_s_dgram_pair.pod | 31 Broadly, this means that the length of the buffer passed to a write call will 36 The BIO datagram pair attaches certain metadata to each write, such as source 50 pair of BIOs B<bio1>, B<bio2> with write buffer sizes B<writebuf1> and 60 L<BIO_reset(3)> clears any data in the write buffer of the given BIO. This means 64 The BIO maintains a fixed size internal write buffer. When the buffer is full, 66 L<BIO_read(3)>. The size of the buffer can be changed using 69 Note that the write buffer is partially consumed by metadata stored internally 81 L<BIO_eof(3)> returns 1 only if the given BIO datagram pair BIO is not currently 86 enough space in the write buffer to accept another datagram equal in size to the 89 intending to write it to a BIO datagram pair, but where the received datagram [all …]
|
| H A D | OPENSSL_secure_malloc.pod | 47 It is a good idea to review the code and see if it addresses your 49 uses a single read/write lock, and therefore any operations 62 Both C<size> and, if specified, C<minsize> must be a power of two and 70 to the process if all secure memory has been freed. 95 the memory if it was not allocated from the secure heap. 104 OPENSSL_secure_allocated() tells if a pointer is allocated in the secure heap. 111 CRYPTO_secure_malloc_init() returns 0 on failure, 1 if successful, 112 and 2 if successful but the heap could not be protected by memory 115 CRYPTO_secure_malloc_initialized() returns 1 if the secure heap is 116 available (that is, if CRYPTO_secure_malloc_init() has been called, [all …]
|
| H A D | BIO_f_base64.pod | 26 This behavior can be changed with B<BIO_FLAGS_BASE64_NO_NL> flag. 47 However, a negative return value can also occur if the underlying BIO 70 Base64 encode the string "Hello World\n" and write the result 84 Read base64 encoded data from standard input and write the decoded 116 It may be possible for L<BIO_read(3)> to return zero, rather than -1, even if
|
| /freebsd/sys/contrib/device-tree/scripts/ |
| H A D | Kbuild.include | 39 # filechk is used to check if the content of a generated file is updated. 46 # The rule defined shall write to stdout the content of the new file. 58 if [ -r $@ ] && cmp -s $@ $@.tmp; then \ 77 if (which $(strip $(c))$(CC)) > /dev/null 2>&1 ; then \ 82 TMPOUT := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/) 91 if ($(1)) >/dev/null 2>&1; \ 164 build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj 170 modbuiltin := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.modbuiltin obj 172 # Prefix -I with $(srctree) if it is not an absolute path. 173 # skip if -I has no parameter [all …]
|
| /freebsd/contrib/xz/ |
| H A D | ChangeLog | 9 2 files changed, 2 insertions(+), 2 deletions(-) 18 1 file changed, 30 insertions(+) 35 1 file changed, 24 insertions(+), 7 deletions(-) 48 1 file changed, 47 insertions(+) 60 lzma_code() call if possible. 66 … Fixes: 64b6d496dc81 ("liblzma: Threaded decoder: Always wait for output if LZMA_FINISH is used.") 69 1 file changed, 9 insertions(+), 2 deletions(-) 80 no difference if the main thread saw the original value or 0. With 96 1 file changed, 4 insertions(+), 2 deletions(-) 128 1 file changed, 22 insertions(+), 9 deletions(-) [all …]
|
| /freebsd/contrib/diff/ |
| H A D | ChangeLog | 54 Detailed if-then-else, diff3 Hunks, Detailed diff3 Normal): 77 (PARAMS): Remove; all uses changed. 79 (set_binary_mode): Define only if HAVE_SETMODE_DOS. 88 (specify_comparison_type): Don't report an error if the comparison 108 (binary): Define to true if not declared. 110 (main): Don't output nanoseconds if platform lacks them. 111 Don't treat files as binary if !binary. 113 (compare_files): Mark files as nonexistent if it looks like 120 (struct file_data.changed): Now char *, not bool *, to save 122 All uses changed. [all …]
|
| H A D | NEWS | 22 files A and B differ". The message is output if either A or B 36 --ignore-blank-lines now considers lines to be empty if they contain 49 if the underlying system conforms to POSIX and if the _POSIX2_VERSION 82 category if possible, instead of using native byte comparison. 140 arbitrary format strings. This format spec is equivalent to T if 143 if N (the number of lines in the group in the the new file) is 0, 144 to `1 line' if N is 1, and to `%dN lines' otherwise. 164 if the underlying system conforms to POSIX: 165 - Some messages' wordings are changed in minor ways. 167 - When comparing directories, if `diff' finds a file that is not a regular [all …]
|
| /freebsd/sys/contrib/openzfs/config/ |
| H A D | pkg.m4 | 18 dnl along with this program; if not, write to the Free Software 22 dnl As a special exception to the GNU General Public License, if you 66 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then 69 if test -n "$PKG_CONFIG"; then 72 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then 89 dnl only at the first occurrence in configure.ac, so if the first place 90 dnl it's called might be skipped (such as if it is within an "if", you 94 if test -n "$PKG_CONFIG" && \ 106 [if test -n "$$1"; then 120 dnl Internal check to see if pkg-config supports short errors. [all …]
|
| /freebsd/crypto/krb5/src/config/ |
| H A D | pkg.m4 | 18 dnl along with this program; if not, write to the Free Software 22 dnl As a special exception to the GNU General Public License, if you 66 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then 69 if test -n "$PKG_CONFIG"; then 72 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then 89 dnl only at the first occurence in configure.ac, so if the first place 90 dnl it's called might be skipped (such as if it is within an "if", you 94 if test -n "$PKG_CONFIG" && \ 106 [if test -n "$$1"; then 120 dnl Internal check to see if pkg-config supports short errors. [all …]
|
| /freebsd/usr.sbin/bsdconfig/networking/share/ |
| H A D | resolv.subr | 1 if [ ! "$_NETWORKING_RESOLV_SUBR" ]; then _NETWORKING_RESOLV_SUBR=1 46 # all possible sub-domains? In example, if the domain is "sub.domain.com", when 88 if ( match(tl0, /^[[:space:]]*search[[:space:]]+/) ) { 118 if ( search_all ) { 121 if ( search_ndots < 1 ) 126 if ( length(search) ) search = search " " 134 if ( domain_found && search_found ) { print; next } 137 if ( ! domain_found && \ 140 if ( length(domain) ) { 145 else if ( ! search_found && \ [all …]
|
| /freebsd/contrib/gdtoa/ |
| H A D | README | 61 function, if compiled with -DHonor_FLT_ROUNDS): 102 The other functions write their results to their final argument(s): 129 126-bit arithmetic, then, if necessary, one specifying 53-bit 133 if the result overflows to +Infinity or underflows to 0. Compile 170 of hexadecimal digits and spaces; if there is only one string of 172 NaN; if there are two or more strings of hexadecimal digits, each 188 places (if their ndig argument is positive), or to the shortest 190 (if ndig <= 0). They write into a buffer supplied as an argument 192 in the buffer, if the buffer was long enough, or 0. Other forms of 194 style and conversions with direction of rounding specified (so that, if [all …]
|
| /freebsd/crypto/openssl/doc/designs/quic-design/ |
| H A D | quic-api.md | 5 the new and changed APIs, and the design constraints motivating those API 21 - [`SSL_write`, `SSL_write_ex`](#-ssl-write----ssl-write-ex-) 37 … - [`SSL_net_read_desired`, `SSL_net_write_desired`](#-ssl-want-net-read----ssl-want-net-write-) 38 … - [`SSL_want`, `SSL_want_read`, `SSL_want_write`](#-ssl-want----ssl-want-read----ssl-want-write-) 44 …get_stream_write_error_code`](#-ssl-get-stream-read-error-code----ssl-get-stream-write-error-code-) 85 Non-SSL object APIs which are new or changed, or otherwise discussed in this 135 - **Changed**: The semantics are changed for QUIC. 213 **Note:** Idempotent if handshake already completed. 215 **Blocking Considerations:** Blocks until handshake completed if in blocking 225 error occurs if in blocking mode (including the peek functions). [all …]
|
| /freebsd/usr.sbin/bsnmpd/modules/snmp_netgraph/ |
| H A D | BEGEMOT-NETGRAPH.txt | 135 is created. Once set it cannot be changed." 140 MAX-ACCESS read-write 150 MAX-ACCESS read-write 159 MAX-ACCESS read-write 163 if the daemon is run with a terminal attached." 196 the buffer. Try increasing begemotNgResBufSiz if 257 by setting this field to loaded. It is unload if the field is 258 set to unloaded. Note, that a type cannot be unloaded if it 313 "Name of the node (if any)."
|
| /freebsd/contrib/ntp/scripts/monitoring/ |
| H A D | README | 35 useful if you have a configured trap 37 debug-output: file to write trace output to (for debugging) 49 a local server if it is not configured to produce a loopstats file. 73 if a timeout occurs the next sample is tried after delay/2 seconds 110 if it has been changed 119 BSD print systems semantics apply; if printer 129 if both start-time and end-time are specified
|
| /freebsd/ |
| H A D | UPDATING | 47 If you don't, you MUST manually install the FreeBSD-pam package if you 56 Commit e5aa60d06958 changed the internal KAPI between 62 you may want to install this package if it's not otherwise installed 68 has changed size and might possibly be an issue otherwise. 78 needs to be changed to 100 otherwise you should install it manually if you need these utilities. 140 manually install them if you need these tools. 164 changed: "FreeBSD" is now "FreeBSD-ports", and "FreeBSD-kmods" is now 170 The set of pkgbase packages for Kerberos and OpenSSL has changed. 178 earlier, the size of struct ifbreq has changed, so you must update [all …]
|