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

Returning articles from the server discard some headers #10

Open
mildred opened this issue Jul 26, 2018 · 0 comments
Open

Returning articles from the server discard some headers #10

mildred opened this issue Jul 26, 2018 · 0 comments

Comments

@mildred
Copy link

mildred commented Jul 26, 2018

Here, if an article has more than one header with the same name, the subsequent headers are discarded. They shouldn't. Also headers are scrambled due to the map data structure, see #9

go-nntp/server/server.go

Lines 362 to 364 in c90cf61

for k, v := range article.Header {
fmt.Fprintf(dw, "%s: %s\r\n", k, v[0])
}

go-nntp/server/server.go

Lines 445 to 447 in c90cf61

for k, v := range article.Header {
fmt.Fprintf(dw, "%s: %s\r\n", k, v[0])
}

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

No branches or pull requests

1 participant