Skip to content
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

feat: implement websocket.Accept in js (#373) #515

Closed
wants to merge 1 commit into from

Conversation

shynome
Copy link

@shynome shynome commented Jan 30, 2025

#373 (comment)

DialOptions.HTTPClient also supported

@mafredri
Copy link
Member

@shynome thanks for the PR. There's quite a lot going on here, could you explain in broad terms what changes you've made, and why. And what new use-cases do these changes enable?

I have some reservations about making such a large API change and introducing new exported types.

@shynome
Copy link
Author

shynome commented Jan 31, 2025

yes, I'm buillding a vpn based on webrtc, it can be running in browser.

the srouce branch: https://github.com/shynome/websocket/commits/feature/js-accept/

I have do the below things

  1. rename Conn to StdConn for split BrowserConn and GoConn
  2. Add the type Conn interface, but change type Conn sturct to type Conn interface is make api compatible broken,
    so I rename type Conn interface to type Stream interface (maybe other name is better clearly, could you provide one?), and use the Conn struct wrap type Stream interface
  3. now we can export websocket.Accept in js, because now we have StdConn in js

@shynome
Copy link
Author

shynome commented Feb 2, 2025

I know this PR has a lot of changes, so it might not be accepted, but in reality, the changes I made are quite few.

First, add the type Conn(Stream) interface to unify StdConn and BrowserConn. Then, export StdConn and BrowserConn so that users know which actual Conn they are working with.

Finally, thanks for your review!

@shynome shynome closed this Mar 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants