Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
33a2bc5b39 | ||
|
|
aebc66e015 | ||
|
|
a7d76dda73 |
@@ -67,9 +67,3 @@ if [ -n "${UPLOAD_RPM}" ]; then
|
||||
python3 rpm_upload_tools.py ${PULP3_REPO_NAME} ${PULP3_DIST_NAME} *.rpm
|
||||
fi
|
||||
|
||||
if [ -n "${UPLOAD_SYMBOL_FILES}" ]; then
|
||||
rpm -i $SYMBOL_TARGET*debuginfo*.rpm
|
||||
_symbol_file=`find /usr/lib/debug/ -name "$SYMBOL_TARGET*.so*.debug"`
|
||||
cp $_symbol_file ${_symbol_file}info.${CI_COMMIT_SHORT_SHA}
|
||||
sentry-cli upload-dif -t elf ${_symbol_file}info.${CI_COMMIT_SHORT_SHA}
|
||||
fi
|
||||
|
||||
@@ -44,7 +44,7 @@ extern "C"
|
||||
|
||||
#endif
|
||||
|
||||
#define QUIC_MAX_UDP_PAYLOAD_SIZE 65527
|
||||
#define QUIC_MAX_UDP_PAYLOAD_SIZE 1460
|
||||
|
||||
#define quic_string(str) \
|
||||
{ \
|
||||
|
||||
@@ -177,8 +177,12 @@ extern "C" unsigned char QUIC_ENTRY(const struct streaminfo *pstream, void**pme,
|
||||
state=quic_analyze_entry(pstream, context, thread_seq, a_packet);
|
||||
|
||||
if(state&APP_STATE_DROPME || pstream->opstate==OP_STATE_CLOSE)
|
||||
{
|
||||
quic_call_business_plug(pstream, context, NULL, 0, QUIC_INTEREST_KEY_MASK, a_packet);
|
||||
{
|
||||
if(context->link_state==1)
|
||||
{
|
||||
quic_call_business_plug(pstream, context, NULL, 0, QUIC_INTEREST_KEY_MASK, a_packet);
|
||||
}
|
||||
|
||||
quic_free_context(pstream, g_quic_param.context_bridge_id, *pme);
|
||||
stream_bridge_async_data_put(pstream, g_quic_param.context_bridge_id, NULL);
|
||||
*pme=NULL;
|
||||
|
||||
Reference in New Issue
Block a user