[PR #18] [MERGED] Feature/mg 214 #222

Closed
opened 2026-02-26 04:34:31 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mageddo/dns-proxy-server/pull/18
Author: @mageddo
Created: 3/30/2017
Status: Merged
Merged: 4/21/2017
Merged by: @mageddo

Base: v2-golangHead: feature/MG-214


📝 Commits (10+)

  • a3002b7 adding nslookup sample
  • ba9a36d Merge remote-tracking branch 'origin/v2-golang' into feature/MG-214
  • 701374d MG-214 setup flag parser
  • e91cf22 MG-214 fixing flags
  • d0a7cba MG-214 setup flags
  • 930fbe0 MG-214 adding logger
  • 7b3b569 MG-214 criando estrutura basica para intepretar o resolv.conf
  • 5ff4b57 MG-214 method to set the dns server
  • 5c92317 MG-214 fixing write resolvconf erros
  • f7da455 MG-214 adding test framework

📊 Changes

17 files changed (+596 additions, -53 deletions)

View changed files

📝 .gitmodules (+3 -0)
📝 README.md (+62 -2)
📝 docker-compose.yml (+6 -2)
📝 src/conf/config.sample.json (+18 -2)
📝 src/dns.go (+29 -33)
src/github.com/mageddo/dns-proxy-server/conf/DnsServerCleaner.go (+30 -0)
src/github.com/mageddo/dns-proxy-server/conf/SetMachineDnsServer.go (+39 -0)
src/github.com/mageddo/dns-proxy-server/conf/conf.go (+224 -0)
src/github.com/mageddo/dns-proxy-server/conf/conf_test.go (+90 -0)
📝 src/github.com/mageddo/dns-proxy-server/events/local/LocalEvents.go (+9 -10)
src/github.com/mageddo/dns-proxy-server/flags/flags.go (+27 -0)
src/github.com/mageddo/dns-proxy-server/test/etcresolv.go (+28 -0)
src/github.com/mageddo/dns-proxy-server/utils/env/env.go (+7 -0)
src/github.com/mageddo/dns-proxy-server/utils/exitcodes/exitcodes.go (+19 -0)
📝 src/github.com/mageddo/dns-proxy-server/utils/utils.go (+3 -1)
📝 src/github.com/mageddo/log/logger.go (+1 -3)
src/github.com/stretchr/testify (+1 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mageddo/dns-proxy-server/pull/18 **Author:** [@mageddo](https://github.com/mageddo) **Created:** 3/30/2017 **Status:** ✅ Merged **Merged:** 4/21/2017 **Merged by:** [@mageddo](https://github.com/mageddo) **Base:** `v2-golang` ← **Head:** `feature/MG-214` --- ### 📝 Commits (10+) - [`a3002b7`](https://github.com/mageddo/dns-proxy-server/commit/a3002b7d8f89cd5b519bb94b1c21369b33bf0414) adding nslookup sample - [`ba9a36d`](https://github.com/mageddo/dns-proxy-server/commit/ba9a36dab3cdd016ec5541b70740501caba4d44b) Merge remote-tracking branch 'origin/v2-golang' into feature/MG-214 - [`701374d`](https://github.com/mageddo/dns-proxy-server/commit/701374de0db3fb03d42c8204496460449bf4f1bf) MG-214 setup flag parser - [`e91cf22`](https://github.com/mageddo/dns-proxy-server/commit/e91cf2297ffd38cbaca1d9db11cd3f02629a7205) MG-214 fixing flags - [`d0a7cba`](https://github.com/mageddo/dns-proxy-server/commit/d0a7cba4a19bb40169888a4a31a56f92535ca5bc) MG-214 setup flags - [`930fbe0`](https://github.com/mageddo/dns-proxy-server/commit/930fbe05772b824052b15a5d13937a79cfa2cb2b) MG-214 adding logger - [`7b3b569`](https://github.com/mageddo/dns-proxy-server/commit/7b3b569d24698843591fd1ace2016a3f22705668) MG-214 criando estrutura basica para intepretar o resolv.conf - [`5ff4b57`](https://github.com/mageddo/dns-proxy-server/commit/5ff4b57bdddbca50e868a699974e1012d626900e) MG-214 method to set the dns server - [`5c92317`](https://github.com/mageddo/dns-proxy-server/commit/5c92317ac4634914a0f6e5b45dfac3ccc9f348a1) MG-214 fixing write resolvconf erros - [`f7da455`](https://github.com/mageddo/dns-proxy-server/commit/f7da455b894a516b37c931db21f8f37872818e2f) MG-214 adding test framework ### 📊 Changes **17 files changed** (+596 additions, -53 deletions) <details> <summary>View changed files</summary> 📝 `.gitmodules` (+3 -0) 📝 `README.md` (+62 -2) 📝 `docker-compose.yml` (+6 -2) 📝 `src/conf/config.sample.json` (+18 -2) 📝 `src/dns.go` (+29 -33) ➕ `src/github.com/mageddo/dns-proxy-server/conf/DnsServerCleaner.go` (+30 -0) ➕ `src/github.com/mageddo/dns-proxy-server/conf/SetMachineDnsServer.go` (+39 -0) ➕ `src/github.com/mageddo/dns-proxy-server/conf/conf.go` (+224 -0) ➕ `src/github.com/mageddo/dns-proxy-server/conf/conf_test.go` (+90 -0) 📝 `src/github.com/mageddo/dns-proxy-server/events/local/LocalEvents.go` (+9 -10) ➕ `src/github.com/mageddo/dns-proxy-server/flags/flags.go` (+27 -0) ➕ `src/github.com/mageddo/dns-proxy-server/test/etcresolv.go` (+28 -0) ➕ `src/github.com/mageddo/dns-proxy-server/utils/env/env.go` (+7 -0) ➕ `src/github.com/mageddo/dns-proxy-server/utils/exitcodes/exitcodes.go` (+19 -0) 📝 `src/github.com/mageddo/dns-proxy-server/utils/utils.go` (+3 -1) 📝 `src/github.com/mageddo/log/logger.go` (+1 -3) ➕ `src/github.com/stretchr/testify` (+1 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 04:34:31 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/dns-proxy-server-mageddo#222
No description provided.