X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilccore%2Fsilcpacket.h;fp=lib%2Fsilccore%2Fsilcpacket.h;h=b9ecfef3fb0f0cd6f35c7b1c77704ffab940626c;hb=bdf83e1e0e5c65a888075986a452c6e431047a6d;hp=1a880927dc6dd229044bdcdad77c0babe85a04fa;hpb=49bd4f6cd6a28a9bcb8081eaef48567538ba486f;p=silc.git diff --git a/lib/silccore/silcpacket.h b/lib/silccore/silcpacket.h index 1a880927..b9ecfef3 100644 --- a/lib/silccore/silcpacket.h +++ b/lib/silccore/silcpacket.h @@ -515,20 +515,19 @@ void silc_packet_stream_set_iv_included(SilcPacketStream stream); * SYNOPSIS * * void silc_packet_stream_set_stream(SilcPacketStream packet_stream, - * SilcStream stream, - * SilcSchedule schedule); + * SilcStream stream); * * DESCRIPTION * * This function may be used to change the underlaying stream in the * packet stream indicated by `packet_stream'. Note that the old * stream will not be used after calling this function. The caller is - * responsible destroying the old stream. + * responsible destroying the old stream. The `stream' will use + * the same scheduler as the `packet_stream'. * ***/ void silc_packet_stream_set_stream(SilcPacketStream packet_stream, - SilcStream stream, - SilcSchedule schedule); + SilcStream stream); /****f* silccore/SilcPacketAPI/silc_packet_stream_get_stream *