Changeset 97372 in vbox for trunk/src/libs/openssl-3.0.7/ssl/statem/statem.c
- Timestamp:
- Nov 2, 2022 7:40:16 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154372
- Location:
- trunk/src/libs/openssl-3.0.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.0.7
- Property svn:mergeinfo
-
old new 15 15 /vendor/openssl/3.0.2:150728-150729 16 16 /vendor/openssl/3.0.3:151497-151729 17 /vendor/openssl/current:147554-151496 17 /vendor/openssl/3.0.7:154371 18 /vendor/openssl/current:147554-154370
-
- Property svn:mergeinfo
-
trunk/src/libs/openssl-3.0.7/ssl/statem/statem.c
r94082 r97372 1 1 /* 2 * Copyright 2015-202 1The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2015-2022 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 4 * Licensed under the Apache License 2.0 (the "License"). You may not use … … 850 850 return SUB_STATE_ERROR; 851 851 } 852 if (confunc != NULL && !confunc(s, &pkt)) { 853 WPACKET_cleanup(&pkt); 854 check_fatal(s); 855 return SUB_STATE_ERROR; 852 if (confunc != NULL) { 853 int tmpret; 854 855 tmpret = confunc(s, &pkt); 856 if (tmpret <= 0) { 857 WPACKET_cleanup(&pkt); 858 check_fatal(s); 859 return SUB_STATE_ERROR; 860 } else if (tmpret == 2) { 861 /* 862 * The construction function decided not to construct the 863 * message after all and continue. Skip sending. 864 */ 865 WPACKET_cleanup(&pkt); 866 st->write_state = WRITE_STATE_POST_WORK; 867 st->write_state_work = WORK_MORE_A; 868 break; 869 } /* else success */ 856 870 } 857 871 if (!ssl_close_construct_packet(s, &pkt, mt)
Note:
See TracChangeset
for help on using the changeset viewer.