mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-03 05:23:43 +00:00
Compare commits
2 Commits
on-waves/0
...
on-waves/0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2727909dba | ||
|
|
ad9856ec15 |
@@ -1,7 +1,7 @@
|
|||||||
dnl Process this file with autoconf to produce a configure script
|
dnl Process this file with autoconf to produce a configure script
|
||||||
AC_INIT
|
AC_INIT
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE(openbsc, 0.3.3onwaves)
|
AM_INIT_AUTOMAKE(openbsc, 0.3.4onwaves)
|
||||||
|
|
||||||
dnl kernel style compile messages
|
dnl kernel style compile messages
|
||||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
||||||
|
|||||||
@@ -247,6 +247,7 @@ static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
|
|||||||
LOGP(DINP, LOGL_ERROR, "BTS is still registered. Closing old connection.\n");
|
LOGP(DINP, LOGL_ERROR, "BTS is still registered. Closing old connection.\n");
|
||||||
bsc_unregister_fd(newbfd);
|
bsc_unregister_fd(newbfd);
|
||||||
close(newbfd->fd);
|
close(newbfd->fd);
|
||||||
|
newbfd->fd = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* get rid of our old temporary bfd */
|
/* get rid of our old temporary bfd */
|
||||||
@@ -491,6 +492,7 @@ static int listen_fd_cb(struct bsc_fd *listen_bfd, unsigned int what)
|
|||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
int idx = 0;
|
int idx = 0;
|
||||||
|
int i;
|
||||||
struct e1inp_line *line;
|
struct e1inp_line *line;
|
||||||
struct e1inp_ts *e1i_ts;
|
struct e1inp_ts *e1i_ts;
|
||||||
struct bsc_fd *bfd;
|
struct bsc_fd *bfd;
|
||||||
@@ -517,6 +519,10 @@ static int listen_fd_cb(struct bsc_fd *listen_bfd, unsigned int what)
|
|||||||
/* create virrtual E1 timeslots for signalling */
|
/* create virrtual E1 timeslots for signalling */
|
||||||
e1inp_ts_config(&line->ts[1-1], line, E1INP_TS_TYPE_SIGN);
|
e1inp_ts_config(&line->ts[1-1], line, E1INP_TS_TYPE_SIGN);
|
||||||
|
|
||||||
|
/* initialize the fds */
|
||||||
|
for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
|
||||||
|
line->ts[i].driver.ipaccess.fd.fd = -1;
|
||||||
|
|
||||||
e1i_ts = &line->ts[idx];
|
e1i_ts = &line->ts[idx];
|
||||||
|
|
||||||
bfd = &e1i_ts->driver.ipaccess.fd;
|
bfd = &e1i_ts->driver.ipaccess.fd;
|
||||||
|
|||||||
Reference in New Issue
Block a user