-
Notifications
You must be signed in to change notification settings - Fork 865
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed 'm_' prefix in socket config structs #1839
Removed 'm_' prefix in socket config structs #1839
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider ^
Ah, note: this |
d58013f
to
eeef421
Compare
CSrtConfig
,CSrtMuxerConfig
and others as of now are structures.They allow public access to their members. Members currently have
m_
prefix, which is intended to identify private members.Changes:
m_
prefix of members inCSrtConfig
,CSrtMuxerConfig
etc.char
must have apc
prefix instead ofpv
, therefore renamedpvUDPRcvBufSize()
et al topcUDPRcvBufSize()
et al according to Hungarian notation.