fix port binding
This commit is contained in:
parent
dad8ac498c
commit
785341e883
43 changed files with 1543 additions and 431 deletions
|
|
@ -4,7 +4,10 @@
|
|||
#![allow(async_fn_in_trait)]
|
||||
//#![warn(missing_docs)]
|
||||
|
||||
|
||||
#[cfg(feature = "big_pid")]
|
||||
pub type PID = u64;
|
||||
#[cfg(not(feature = "big_pid"))]
|
||||
pub type PID = u32;
|
||||
|
||||
extern crate self as rnex_core;
|
||||
|
||||
|
|
@ -12,18 +15,18 @@ pub mod prudp;
|
|||
pub mod rmc;
|
||||
//mod protocols;
|
||||
|
||||
pub mod common;
|
||||
pub mod executables;
|
||||
pub mod grpc;
|
||||
pub mod kerberos;
|
||||
pub mod nex;
|
||||
pub mod result;
|
||||
pub mod versions;
|
||||
pub mod common;
|
||||
pub mod reggie;
|
||||
pub mod result;
|
||||
pub mod rnex_proxy_common;
|
||||
pub mod util;
|
||||
pub mod executables;
|
||||
pub mod versions;
|
||||
pub use macros::*;
|
||||
|
||||
pub mod config{
|
||||
pub mod config {
|
||||
pub const FEATURE_HAS_STRUCT_HEADER: bool = cfg!(feature = "rmc_struct_header");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue