Skip to content

Commit 9731d14

Browse files
author
Colin Robertson
authored
Merge pull request MicrosoftDocs#1037 from NextTurn/http-3
Update http links
2 parents 35afd2d + 0d2b092 commit 9731d14

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/atl/reference/atl-http-utility-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ inline void SystemTimeToHttpDate(
273273
The system time to be obtained as an HTTP format string.
274274

275275
*strTime*<br/>
276-
A reference to a string variable to receive the HTTP date time as defined in RFC 2616 ([http://www.ietf.org/rfc/rfc2616.txt](http://www.ietf.org/rfc/rfc2616.txt)) and RFC 1123 ([http://www.ietf.org/rfc/rfc1123.txt](http://www.ietf.org/rfc/rfc1123.txt)).
276+
A reference to a string variable to receive the HTTP date time as defined in RFC 2616 ([https://www.ietf.org/rfc/rfc2616.txt](https://www.ietf.org/rfc/rfc2616.txt)) and RFC 1123 ([https://www.ietf.org/rfc/rfc1123.txt](https://www.ietf.org/rfc/rfc1123.txt)).
277277

278278
## See also
279279

docs/atl/reference/atl-text-encoding-functions.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ Returns TRUE on success, FALSE on failure.
267267

268268
### Remarks
269269

270-
The "B" encoding scheme is described in RFC 2047 ([http://www.ietf.org/rfc/rfc2047.txt](http://www.ietf.org/rfc/rfc2047.txt)).
270+
The "B" encoding scheme is described in RFC 2047 ([https://www.ietf.org/rfc/rfc2047.txt](https://www.ietf.org/rfc/rfc2047.txt)).
271271

272272
## <a name="bencodegetrequiredlength"></a> BEncodeGetRequiredLength
273273

@@ -291,7 +291,7 @@ The number of characters required for a buffer that could hold encoded data of *
291291

292292
### Remarks
293293

294-
The "B" encoding scheme is described in RFC 2047 ([http://www.ietf.org/rfc/rfc2047.txt](http://www.ietf.org/rfc/rfc2047.txt)).
294+
The "B" encoding scheme is described in RFC 2047 ([https://www.ietf.org/rfc/rfc2047.txt](https://www.ietf.org/rfc/rfc2047.txt)).
295295

296296
## <a name="escapexml"></a> EscapeXML
297297

@@ -419,7 +419,7 @@ Returns TRUE on success, FALSE on failure.
419419

420420
### Remarks
421421

422-
The "Q" encoding scheme is described in RFC 2047 ([http://www.ietf.org/rfc/rfc2047.txt](http://www.ietf.org/rfc/rfc2047.txt)).
422+
The "Q" encoding scheme is described in RFC 2047 ([https://www.ietf.org/rfc/rfc2047.txt](https://www.ietf.org/rfc/rfc2047.txt)).
423423

424424
## <a name="qencodegetrequiredlength"></a> QEncodeGetRequiredLength
425425

@@ -443,7 +443,7 @@ The number of characters required for a buffer that could hold encoded data of *
443443

444444
### Remarks
445445

446-
The "Q" encoding scheme is described in RFC 2047 ([http://www.ietf.org/rfc/rfc2047.txt](http://www.ietf.org/rfc/rfc2047.txt)).
446+
The "Q" encoding scheme is described in RFC 2047 ([https://www.ietf.org/rfc/rfc2047.txt](https://www.ietf.org/rfc/rfc2047.txt)).
447447

448448
## <a name="qpdecode"></a> QPDecode
449449

@@ -481,7 +481,7 @@ Returns TRUE on success, FALSE on failure.
481481

482482
### Remarks
483483

484-
The quoted-printable encoding scheme is described in RFC 2045 ([http://www.ietf.org/rfc/rfc2045.txt](http://www.ietf.org/rfc/rfc2045.txt)).
484+
The quoted-printable encoding scheme is described in RFC 2045 ([https://www.ietf.org/rfc/rfc2045.txt](https://www.ietf.org/rfc/rfc2045.txt)).
485485

486486
## <a name="qpdecodegetrequiredlength"></a> QPDecodeGetRequiredLength
487487

@@ -502,7 +502,7 @@ The number of bytes required for a buffer that could hold a decoded string of *n
502502

503503
### Remarks
504504

505-
The quoted-printable encoding scheme is described in RFC 2045 ([http://www.ietf.org/rfc/rfc2045.txt](http://www.ietf.org/rfc/rfc2045.txt)).
505+
The quoted-printable encoding scheme is described in RFC 2045 ([https://www.ietf.org/rfc/rfc2045.txt](https://www.ietf.org/rfc/rfc2045.txt)).
506506

507507
## <a name="qpencode"></a> QPEncode
508508

@@ -538,15 +538,15 @@ ATLSMTP_QPENCODE flags describing how the conversion is to be performed.
538538

539539
- ATLSMTP_QPENCODE_TRAILING_SOFT Appends `=\r\n` to the encoded string.
540540

541-
The quoted-printable encoding scheme is described in [RFC 2045](http://www.ietf.org/rfc/rfc2045.txt).
541+
The quoted-printable encoding scheme is described in [RFC 2045](https://www.ietf.org/rfc/rfc2045.txt).
542542

543543
### Return Value
544544

545545
Returns TRUE on success, FALSE on failure.
546546

547547
### Remarks
548548

549-
The quoted-printable encoding scheme is described in RFC 2045 ([http://www.ietf.org/rfc/rfc2045.txt](http://www.ietf.org/rfc/rfc2045.txt)).
549+
The quoted-printable encoding scheme is described in RFC 2045 ([https://www.ietf.org/rfc/rfc2045.txt](https://www.ietf.org/rfc/rfc2045.txt)).
550550

551551
## <a name="qpencodegetrequiredlength"></a> QPEncodeGetRequiredLength
552552

@@ -567,7 +567,7 @@ The number of characters required for a buffer that could hold encoded data of *
567567

568568
### Remarks
569569

570-
The quoted-printable encoding scheme is described in RFC 2045 ([http://www.ietf.org/rfc/rfc2045.txt](http://www.ietf.org/rfc/rfc2045.txt)).
570+
The quoted-printable encoding scheme is described in RFC 2045 ([https://www.ietf.org/rfc/rfc2045.txt](https://www.ietf.org/rfc/rfc2045.txt)).
571571

572572
## <a name="uudecode"></a> UUDecode
573573

0 commit comments

Comments
 (0)