9
0
Fork 0
This repository has been archived on 2022-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
cellmgr-ng/include/sctp_m3ua.h

23 lines
379 B
C
Raw Normal View History

/*
* Represet M3UA client (and later server) links
*/
#pragma once
#include "mtp_data.h"
#include <netinet/in.h>
struct mtp_m3ua_client_link {
struct mtp_link *base;
char *source;
struct sockaddr_in local;
char *dest;
struct sockaddr_in remote;
int link_index;
int routing_context;
};
struct mtp_m3ua_client_link *mtp_m3ua_client_link_init(struct mtp_link *link);