mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-04 21:47:39 +03:00
Move file comment up
This commit is contained in:
parent
9445e95014
commit
1389c82872
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
|
// functions to verify the startup arguments as correct
|
||||||
|
|
||||||
use std::net::{SocketAddr, ToSocketAddrs};
|
use std::net::{SocketAddr, ToSocketAddrs};
|
||||||
|
|
||||||
// functions to verify the startup arguments as correct
|
|
||||||
pub(crate) fn verify_sock_addr(arg_val: String) -> Result<(), String> {
|
pub(crate) fn verify_sock_addr(arg_val: String) -> Result<(), String> {
|
||||||
match arg_val.parse::<SocketAddr>() {
|
match arg_val.parse::<SocketAddr>() {
|
||||||
Ok(_addr) => Ok(()),
|
Ok(_addr) => Ok(()),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue